pulumi-azure-native 2.51.0a1721725880__py3-none-any.whl → 2.52.0__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 +191 -0
- pulumi_azure_native/authorization/__init__.py +6 -0
- pulumi_azure_native/authorization/get_policy_assignment.py +2 -2
- pulumi_azure_native/authorization/get_policy_definition.py +2 -2
- pulumi_azure_native/authorization/get_policy_definition_at_management_group.py +2 -2
- pulumi_azure_native/authorization/get_policy_definition_version.py +4 -0
- pulumi_azure_native/authorization/get_policy_definition_version_at_management_group.py +4 -0
- pulumi_azure_native/authorization/get_policy_set_definition.py +2 -2
- pulumi_azure_native/authorization/get_policy_set_definition_at_management_group.py +2 -2
- pulumi_azure_native/authorization/get_policy_set_definition_version.py +4 -0
- pulumi_azure_native/authorization/get_policy_set_definition_version_at_management_group.py +4 -0
- pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
- pulumi_azure_native/authorization/list_policy_definition_version_all.py +4 -0
- pulumi_azure_native/authorization/list_policy_definition_version_all_at_management_group.py +4 -0
- pulumi_azure_native/authorization/list_policy_definition_version_all_builtins.py +4 -0
- pulumi_azure_native/authorization/list_policy_set_definition_version_all.py +4 -0
- pulumi_azure_native/authorization/list_policy_set_definition_version_all_at_management_group.py +4 -0
- pulumi_azure_native/authorization/list_policy_set_definition_version_all_builtins.py +4 -0
- pulumi_azure_native/authorization/policy_assignment.py +3 -3
- pulumi_azure_native/authorization/policy_definition.py +3 -3
- pulumi_azure_native/authorization/policy_definition_at_management_group.py +3 -3
- pulumi_azure_native/authorization/policy_definition_version.py +5 -1
- pulumi_azure_native/authorization/policy_definition_version_at_management_group.py +5 -1
- pulumi_azure_native/authorization/policy_set_definition.py +3 -3
- pulumi_azure_native/authorization/policy_set_definition_at_management_group.py +3 -3
- pulumi_azure_native/authorization/policy_set_definition_version.py +5 -1
- pulumi_azure_native/authorization/policy_set_definition_version_at_management_group.py +5 -1
- pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
- pulumi_azure_native/authorization/v20180501/policy_definition.py +1 -1
- pulumi_azure_native/authorization/v20180501/policy_definition_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20190601/policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20190601/policy_definition.py +1 -1
- pulumi_azure_native/authorization/v20190601/policy_definition_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20190601/policy_set_definition.py +1 -1
- pulumi_azure_native/authorization/v20190601/policy_set_definition_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20200301/policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20210601/policy_definition.py +1 -1
- pulumi_azure_native/authorization/v20210601/policy_definition_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20210601/policy_set_definition.py +1 -1
- pulumi_azure_native/authorization/v20210601/policy_set_definition_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20220601/policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_definition.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_definition_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_definition_version.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_definition_version_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_set_definition.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_set_definition_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_set_definition_version.py +1 -1
- pulumi_azure_native/authorization/v20230401/policy_set_definition_version_at_management_group.py +1 -1
- pulumi_azure_native/authorization/v20240201preview/__init__.py +10 -0
- pulumi_azure_native/authorization/v20240201preview/get_role_management_policy_assignment.py +175 -0
- pulumi_azure_native/authorization/v20240201preview/outputs.py +1442 -0
- pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +246 -0
- pulumi_azure_native/authorization/v20240401/policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20240501/__init__.py +34 -0
- pulumi_azure_native/authorization/v20240501/_enums.py +116 -0
- pulumi_azure_native/authorization/v20240501/_inputs.py +839 -0
- pulumi_azure_native/authorization/v20240501/get_policy_assignment.py +318 -0
- pulumi_azure_native/authorization/v20240501/get_policy_definition.py +235 -0
- pulumi_azure_native/authorization/v20240501/get_policy_definition_at_management_group.py +240 -0
- pulumi_azure_native/authorization/v20240501/get_policy_definition_version.py +227 -0
- pulumi_azure_native/authorization/v20240501/get_policy_definition_version_at_management_group.py +232 -0
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition.py +235 -0
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition_at_management_group.py +240 -0
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition_version.py +227 -0
- pulumi_azure_native/authorization/v20240501/get_policy_set_definition_version_at_management_group.py +232 -0
- pulumi_azure_native/authorization/v20240501/list_policy_definition_version_all.py +83 -0
- pulumi_azure_native/authorization/v20240501/list_policy_definition_version_all_at_management_group.py +92 -0
- pulumi_azure_native/authorization/v20240501/list_policy_definition_version_all_builtins.py +83 -0
- pulumi_azure_native/authorization/v20240501/list_policy_set_definition_version_all.py +83 -0
- pulumi_azure_native/authorization/v20240501/list_policy_set_definition_version_all_at_management_group.py +92 -0
- pulumi_azure_native/authorization/v20240501/list_policy_set_definition_version_all_builtins.py +83 -0
- pulumi_azure_native/authorization/v20240501/outputs.py +1148 -0
- pulumi_azure_native/authorization/v20240501/policy_assignment.py +590 -0
- pulumi_azure_native/authorization/v20240501/policy_definition.py +415 -0
- pulumi_azure_native/authorization/v20240501/policy_definition_at_management_group.py +436 -0
- pulumi_azure_native/authorization/v20240501/policy_definition_version.py +407 -0
- pulumi_azure_native/authorization/v20240501/policy_definition_version_at_management_group.py +428 -0
- pulumi_azure_native/authorization/v20240501/policy_set_definition.py +412 -0
- pulumi_azure_native/authorization/v20240501/policy_set_definition_at_management_group.py +433 -0
- pulumi_azure_native/authorization/v20240501/policy_set_definition_version.py +404 -0
- pulumi_azure_native/authorization/v20240501/policy_set_definition_version_at_management_group.py +425 -0
- pulumi_azure_native/cdn/v20240201/_enums.py +65 -2
- pulumi_azure_native/cdn/v20240201/_inputs.py +316 -46
- pulumi_azure_native/cdn/v20240201/outputs.py +203 -29
- pulumi_azure_native/compute/__init__.py +3 -0
- pulumi_azure_native/compute/availability_set.py +3 -3
- pulumi_azure_native/compute/capacity_reservation.py +3 -3
- pulumi_azure_native/compute/capacity_reservation_group.py +3 -3
- pulumi_azure_native/compute/dedicated_host.py +3 -3
- pulumi_azure_native/compute/dedicated_host_group.py +3 -3
- pulumi_azure_native/compute/get_availability_set.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation.py +2 -2
- pulumi_azure_native/compute/get_capacity_reservation_group.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host.py +2 -2
- pulumi_azure_native/compute/get_dedicated_host_group.py +2 -2
- pulumi_azure_native/compute/get_image.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_request_rate_by_interval.py +2 -2
- pulumi_azure_native/compute/get_log_analytic_export_throttled_requests.py +2 -2
- pulumi_azure_native/compute/get_proximity_placement_group.py +2 -2
- pulumi_azure_native/compute/get_restore_point.py +2 -2
- pulumi_azure_native/compute/get_restore_point_collection.py +2 -2
- pulumi_azure_native/compute/get_ssh_public_key.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_run_command_by_virtual_machine.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_extension.py +2 -2
- pulumi_azure_native/compute/get_virtual_machine_scale_set_vm_run_command.py +2 -2
- pulumi_azure_native/compute/image.py +3 -3
- pulumi_azure_native/compute/proximity_placement_group.py +3 -3
- pulumi_azure_native/compute/restore_point.py +3 -3
- pulumi_azure_native/compute/restore_point_collection.py +3 -3
- pulumi_azure_native/compute/ssh_public_key.py +3 -3
- pulumi_azure_native/compute/v20211101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20211101/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20221101/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230301/image.py +1 -1
- pulumi_azure_native/compute/v20230301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230701/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230701/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230701/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230701/image.py +1 -1
- pulumi_azure_native/compute/v20230701/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230701/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230701/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230701/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20230901/availability_set.py +1 -1
- pulumi_azure_native/compute/v20230901/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20230901/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20230901/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20230901/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20230901/image.py +1 -1
- pulumi_azure_native/compute/v20230901/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20230901/restore_point.py +1 -1
- pulumi_azure_native/compute/v20230901/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20230901/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20230901/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20240301/availability_set.py +1 -1
- pulumi_azure_native/compute/v20240301/capacity_reservation.py +1 -1
- pulumi_azure_native/compute/v20240301/capacity_reservation_group.py +1 -1
- pulumi_azure_native/compute/v20240301/dedicated_host.py +1 -1
- pulumi_azure_native/compute/v20240301/dedicated_host_group.py +1 -1
- pulumi_azure_native/compute/v20240301/image.py +1 -1
- pulumi_azure_native/compute/v20240301/proximity_placement_group.py +1 -1
- pulumi_azure_native/compute/v20240301/restore_point.py +1 -1
- pulumi_azure_native/compute/v20240301/restore_point_collection.py +1 -1
- pulumi_azure_native/compute/v20240301/ssh_public_key.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine_extension.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine_run_command_by_virtual_machine.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine_scale_set.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine_scale_set_extension.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine_scale_set_vm.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine_scale_set_vm_extension.py +1 -1
- pulumi_azure_native/compute/v20240301/virtual_machine_scale_set_vm_run_command.py +1 -1
- pulumi_azure_native/compute/v20240701/__init__.py +48 -0
- pulumi_azure_native/compute/v20240701/_enums.py +671 -0
- pulumi_azure_native/compute/v20240701/_inputs.py +9900 -0
- pulumi_azure_native/compute/v20240701/availability_set.py +402 -0
- pulumi_azure_native/compute/v20240701/capacity_reservation.py +368 -0
- pulumi_azure_native/compute/v20240701/capacity_reservation_group.py +306 -0
- pulumi_azure_native/compute/v20240701/dedicated_host.py +417 -0
- pulumi_azure_native/compute/v20240701/dedicated_host_group.py +355 -0
- pulumi_azure_native/compute/v20240701/get_availability_set.py +227 -0
- pulumi_azure_native/compute/v20240701/get_capacity_reservation.py +263 -0
- pulumi_azure_native/compute/v20240701/get_capacity_reservation_group.py +206 -0
- pulumi_azure_native/compute/v20240701/get_dedicated_host.py +276 -0
- pulumi_azure_native/compute/v20240701/get_dedicated_host_group.py +219 -0
- pulumi_azure_native/compute/v20240701/get_image.py +206 -0
- pulumi_azure_native/compute/v20240701/get_log_analytic_export_request_rate_by_interval.py +125 -0
- pulumi_azure_native/compute/v20240701/get_log_analytic_export_throttled_requests.py +119 -0
- pulumi_azure_native/compute/v20240701/get_proximity_placement_group.py +232 -0
- pulumi_azure_native/compute/v20240701/get_restore_point.py +211 -0
- pulumi_azure_native/compute/v20240701/get_restore_point_collection.py +193 -0
- pulumi_azure_native/compute/v20240701/get_ssh_public_key.py +148 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine.py +583 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine_extension.py +302 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine_run_command_by_virtual_machine.py +328 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine_scale_set.py +518 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine_scale_set_extension.py +263 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine_scale_set_vm.py +471 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine_scale_set_vm_extension.py +294 -0
- pulumi_azure_native/compute/v20240701/get_virtual_machine_scale_set_vm_run_command.py +333 -0
- pulumi_azure_native/compute/v20240701/image.py +345 -0
- pulumi_azure_native/compute/v20240701/outputs.py +11248 -0
- pulumi_azure_native/compute/v20240701/proximity_placement_group.py +365 -0
- pulumi_azure_native/compute/v20240701/restore_point.py +347 -0
- pulumi_azure_native/compute/v20240701/restore_point_collection.py +277 -0
- pulumi_azure_native/compute/v20240701/ssh_public_key.py +245 -0
- pulumi_azure_native/compute/v20240701/virtual_machine.py +1072 -0
- pulumi_azure_native/compute/v20240701/virtual_machine_extension.py +588 -0
- pulumi_azure_native/compute/v20240701/virtual_machine_run_command_by_virtual_machine.py +615 -0
- pulumi_azure_native/compute/v20240701/virtual_machine_scale_set.py +984 -0
- pulumi_azure_native/compute/v20240701/virtual_machine_scale_set_extension.py +519 -0
- pulumi_azure_native/compute/v20240701/virtual_machine_scale_set_vm.py +755 -0
- pulumi_azure_native/compute/v20240701/virtual_machine_scale_set_vm_extension.py +580 -0
- pulumi_azure_native/compute/v20240701/virtual_machine_scale_set_vm_run_command.py +636 -0
- pulumi_azure_native/compute/virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_run_command_by_virtual_machine.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_extension.py +3 -3
- pulumi_azure_native/compute/virtual_machine_scale_set_vm_run_command.py +3 -3
- pulumi_azure_native/config/__init__.pyi +1 -1
- pulumi_azure_native/config/vars.py +1 -1
- pulumi_azure_native/databasewatcher/__init__.py +5 -0
- pulumi_azure_native/databasewatcher/_enums.py +15 -0
- pulumi_azure_native/databasewatcher/alert_rule_resource.py +353 -0
- pulumi_azure_native/databasewatcher/get_alert_rule_resource.py +208 -0
- pulumi_azure_native/databasewatcher/get_shared_private_link_resource.py +4 -0
- pulumi_azure_native/databasewatcher/get_target.py +4 -0
- pulumi_azure_native/databasewatcher/get_watcher.py +4 -0
- pulumi_azure_native/databasewatcher/shared_private_link_resource.py +5 -1
- pulumi_azure_native/databasewatcher/target.py +5 -1
- pulumi_azure_native/databasewatcher/v20230901preview/shared_private_link_resource.py +1 -1
- pulumi_azure_native/databasewatcher/v20230901preview/target.py +1 -1
- pulumi_azure_native/databasewatcher/v20230901preview/watcher.py +1 -1
- pulumi_azure_native/databasewatcher/v20240719preview/__init__.py +18 -0
- pulumi_azure_native/databasewatcher/v20240719preview/_enums.py +68 -0
- pulumi_azure_native/databasewatcher/v20240719preview/_inputs.py +310 -0
- pulumi_azure_native/databasewatcher/v20240719preview/alert_rule_resource.py +351 -0
- pulumi_azure_native/databasewatcher/v20240719preview/get_alert_rule_resource.py +206 -0
- pulumi_azure_native/databasewatcher/v20240719preview/get_shared_private_link_resource.py +206 -0
- pulumi_azure_native/databasewatcher/v20240719preview/get_target.py +193 -0
- pulumi_azure_native/databasewatcher/v20240719preview/get_watcher.py +214 -0
- pulumi_azure_native/databasewatcher/v20240719preview/outputs.py +452 -0
- pulumi_azure_native/databasewatcher/v20240719preview/shared_private_link_resource.py +329 -0
- pulumi_azure_native/databasewatcher/v20240719preview/target.py +321 -0
- pulumi_azure_native/databasewatcher/v20240719preview/watcher.py +336 -0
- pulumi_azure_native/databasewatcher/watcher.py +5 -1
- pulumi_azure_native/datafactory/_inputs.py +121 -1
- pulumi_azure_native/datafactory/outputs.py +75 -1
- pulumi_azure_native/datafactory/v20180601/_inputs.py +121 -1
- pulumi_azure_native/datafactory/v20180601/outputs.py +75 -1
- pulumi_azure_native/dbforpostgresql/__init__.py +5 -0
- pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
- pulumi_azure_native/dbforpostgresql/backup.py +222 -0
- pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
- pulumi_azure_native/dbforpostgresql/database.py +3 -3
- pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
- pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_backup.py +169 -0
- pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
- pulumi_azure_native/dbforpostgresql/migration.py +3 -3
- pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/server.py +3 -3
- pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/__init__.py +29 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/_enums.py +318 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/_inputs.py +1168 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +287 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +220 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +338 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +248 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +250 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_administrator.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_backup.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_configuration.py +271 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_database.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_firewall_rule.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_get_private_dns_zone_suffix_execute.py +66 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_migration.py +471 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_server.py +409 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/get_virtual_endpoint.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +891 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/outputs.py +1907 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +252 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +778 -0
- pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +259 -0
- pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
- pulumi_azure_native/elastic/_inputs.py +3 -3
- pulumi_azure_native/elastic/outputs.py +2 -2
- pulumi_azure_native/elastic/v20240101preview/_inputs.py +3 -3
- pulumi_azure_native/elastic/v20240101preview/outputs.py +2 -2
- pulumi_azure_native/elastic/v20240301/_inputs.py +3 -3
- pulumi_azure_native/elastic/v20240301/outputs.py +2 -2
- pulumi_azure_native/elastic/v20240501preview/_inputs.py +3 -3
- pulumi_azure_native/elastic/v20240501preview/outputs.py +2 -2
- pulumi_azure_native/elastic/v20240615preview/_inputs.py +3 -3
- pulumi_azure_native/elastic/v20240615preview/outputs.py +2 -2
- pulumi_azure_native/hdinsight/__init__.py +3 -0
- pulumi_azure_native/hdinsight/application.py +3 -3
- pulumi_azure_native/hdinsight/cluster.py +3 -3
- pulumi_azure_native/hdinsight/get_application.py +2 -2
- pulumi_azure_native/hdinsight/get_cluster.py +2 -2
- pulumi_azure_native/hdinsight/get_cluster_gateway_settings.py +2 -2
- pulumi_azure_native/hdinsight/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hdinsight/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hdinsight/v20210601/application.py +1 -1
- pulumi_azure_native/hdinsight/v20210601/cluster.py +1 -1
- pulumi_azure_native/hdinsight/v20210601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hdinsight/v20230415preview/application.py +1 -1
- pulumi_azure_native/hdinsight/v20230415preview/cluster.py +1 -1
- pulumi_azure_native/hdinsight/v20230415preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hdinsight/v20230815preview/application.py +1 -1
- pulumi_azure_native/hdinsight/v20230815preview/cluster.py +1 -1
- pulumi_azure_native/hdinsight/v20230815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hdinsight/v20240801preview/__init__.py +17 -0
- pulumi_azure_native/hdinsight/v20240801preview/_enums.py +113 -0
- pulumi_azure_native/hdinsight/v20240801preview/_inputs.py +3323 -0
- pulumi_azure_native/hdinsight/v20240801preview/application.py +260 -0
- pulumi_azure_native/hdinsight/v20240801preview/cluster.py +326 -0
- pulumi_azure_native/hdinsight/v20240801preview/get_application.py +167 -0
- pulumi_azure_native/hdinsight/v20240801preview/get_cluster.py +201 -0
- pulumi_azure_native/hdinsight/v20240801preview/get_cluster_gateway_settings.py +109 -0
- pulumi_azure_native/hdinsight/v20240801preview/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/hdinsight/v20240801preview/outputs.py +3491 -0
- pulumi_azure_native/hdinsight/v20240801preview/private_endpoint_connection.py +252 -0
- pulumi_azure_native/healthbot/__init__.py +3 -0
- pulumi_azure_native/healthbot/bot.py +3 -3
- pulumi_azure_native/healthbot/get_bot.py +2 -2
- pulumi_azure_native/healthbot/list_bot_secrets.py +4 -0
- pulumi_azure_native/healthbot/v20201208preview/bot.py +1 -1
- pulumi_azure_native/healthbot/v20230501/bot.py +1 -1
- pulumi_azure_native/healthbot/v20240201/__init__.py +13 -0
- pulumi_azure_native/healthbot/v20240201/_enums.py +31 -0
- pulumi_azure_native/healthbot/v20240201/_inputs.py +254 -0
- pulumi_azure_native/healthbot/v20240201/bot.py +317 -0
- pulumi_azure_native/healthbot/v20240201/get_bot.py +188 -0
- pulumi_azure_native/healthbot/v20240201/list_bot_secrets.py +84 -0
- pulumi_azure_native/healthbot/v20240201/outputs.py +473 -0
- pulumi_azure_native/kubernetes/__init__.py +3 -0
- pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
- pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
- pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
- pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py +1 -1
- pulumi_azure_native/kubernetes/v20240715preview/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240715preview/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240715preview/_inputs.py +559 -0
- pulumi_azure_native/kubernetes/v20240715preview/connected_cluster.py +793 -0
- pulumi_azure_native/kubernetes/v20240715preview/get_connected_cluster.py +474 -0
- pulumi_azure_native/kubernetes/v20240715preview/list_connected_cluster_user_credential.py +108 -0
- pulumi_azure_native/kubernetes/v20240715preview/outputs.py +854 -0
- pulumi_azure_native/machinelearningservices/__init__.py +4 -0
- pulumi_azure_native/machinelearningservices/batch_deployment.py +3 -3
- pulumi_azure_native/machinelearningservices/batch_endpoint.py +3 -3
- pulumi_azure_native/machinelearningservices/code_container.py +3 -3
- pulumi_azure_native/machinelearningservices/code_version.py +3 -3
- pulumi_azure_native/machinelearningservices/component_container.py +3 -3
- pulumi_azure_native/machinelearningservices/component_version.py +3 -3
- pulumi_azure_native/machinelearningservices/compute.py +3 -3
- pulumi_azure_native/machinelearningservices/connection_deployment.py +5 -1
- pulumi_azure_native/machinelearningservices/connection_rai_blocklist.py +5 -1
- pulumi_azure_native/machinelearningservices/connection_rai_blocklist_item.py +5 -1
- pulumi_azure_native/machinelearningservices/connection_rai_policy.py +5 -1
- pulumi_azure_native/machinelearningservices/data_container.py +3 -3
- pulumi_azure_native/machinelearningservices/data_version.py +3 -3
- pulumi_azure_native/machinelearningservices/datastore.py +3 -3
- pulumi_azure_native/machinelearningservices/endpoint_deployment.py +3 -3
- pulumi_azure_native/machinelearningservices/environment_container.py +3 -3
- pulumi_azure_native/machinelearningservices/environment_specification_version.py +1 -1
- pulumi_azure_native/machinelearningservices/environment_version.py +3 -3
- pulumi_azure_native/machinelearningservices/featureset_container_entity.py +3 -3
- pulumi_azure_native/machinelearningservices/featureset_version.py +3 -3
- pulumi_azure_native/machinelearningservices/featurestore_entity_container_entity.py +3 -3
- pulumi_azure_native/machinelearningservices/featurestore_entity_version.py +3 -3
- pulumi_azure_native/machinelearningservices/get_batch_deployment.py +2 -2
- pulumi_azure_native/machinelearningservices/get_batch_endpoint.py +2 -2
- pulumi_azure_native/machinelearningservices/get_code_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_code_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_component_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_component_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_compute.py +2 -2
- pulumi_azure_native/machinelearningservices/get_compute_allowed_resize_sizes.py +2 -2
- pulumi_azure_native/machinelearningservices/get_connection_deployment.py +4 -0
- pulumi_azure_native/machinelearningservices/get_connection_rai_blocklist.py +4 -0
- pulumi_azure_native/machinelearningservices/get_connection_rai_blocklist_item.py +4 -0
- pulumi_azure_native/machinelearningservices/get_connection_rai_policy.py +4 -0
- pulumi_azure_native/machinelearningservices/get_data_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_data_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_datastore.py +2 -2
- pulumi_azure_native/machinelearningservices/get_endpoint_deployment.py +2 -2
- pulumi_azure_native/machinelearningservices/get_environment_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_environment_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_featureset_container_entity.py +2 -2
- pulumi_azure_native/machinelearningservices/get_featureset_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_featurestore_entity_container_entity.py +2 -2
- pulumi_azure_native/machinelearningservices/get_featurestore_entity_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_job.py +2 -2
- pulumi_azure_native/machinelearningservices/get_managed_network_settings_rule.py +2 -2
- pulumi_azure_native/machinelearningservices/get_marketplace_subscription.py +2 -2
- pulumi_azure_native/machinelearningservices/get_model_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_model_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_online_deployment.py +2 -2
- pulumi_azure_native/machinelearningservices/get_online_deployment_logs.py +2 -2
- pulumi_azure_native/machinelearningservices/get_online_endpoint.py +2 -2
- pulumi_azure_native/machinelearningservices/get_online_endpoint_token.py +2 -2
- pulumi_azure_native/machinelearningservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/machinelearningservices/get_rai_policy.py +4 -0
- pulumi_azure_native/machinelearningservices/get_registry.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_code_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_code_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_component_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_component_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_data_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_data_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_environment_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_environment_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_model_container.py +2 -2
- pulumi_azure_native/machinelearningservices/get_registry_model_version.py +2 -2
- pulumi_azure_native/machinelearningservices/get_schedule.py +2 -2
- pulumi_azure_native/machinelearningservices/get_serverless_endpoint.py +2 -2
- pulumi_azure_native/machinelearningservices/get_workspace.py +2 -2
- pulumi_azure_native/machinelearningservices/get_workspace_connection.py +2 -2
- pulumi_azure_native/machinelearningservices/job.py +3 -3
- pulumi_azure_native/machinelearningservices/list_batch_endpoint_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/list_compute_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/list_compute_nodes.py +2 -2
- pulumi_azure_native/machinelearningservices/list_connection_models.py +94 -0
- pulumi_azure_native/machinelearningservices/list_datastore_secrets.py +2 -2
- pulumi_azure_native/machinelearningservices/list_endpoint_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/list_online_endpoint_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/list_serverless_endpoint_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/list_workspace_connection_secrets.py +2 -2
- pulumi_azure_native/machinelearningservices/list_workspace_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/list_workspace_notebook_access_token.py +2 -2
- pulumi_azure_native/machinelearningservices/list_workspace_notebook_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/list_workspace_storage_account_keys.py +2 -2
- pulumi_azure_native/machinelearningservices/machine_learning_datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/managed_network_settings_rule.py +3 -3
- pulumi_azure_native/machinelearningservices/marketplace_subscription.py +3 -3
- pulumi_azure_native/machinelearningservices/model_container.py +3 -3
- pulumi_azure_native/machinelearningservices/model_version.py +3 -3
- pulumi_azure_native/machinelearningservices/online_deployment.py +3 -3
- pulumi_azure_native/machinelearningservices/online_endpoint.py +3 -3
- pulumi_azure_native/machinelearningservices/outputs.py +401 -0
- pulumi_azure_native/machinelearningservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/machinelearningservices/rai_policy.py +5 -1
- pulumi_azure_native/machinelearningservices/registry.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_code_container.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_code_version.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_component_container.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_component_version.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_data_container.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_data_version.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_environment_container.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_environment_version.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_model_container.py +3 -3
- pulumi_azure_native/machinelearningservices/registry_model_version.py +3 -3
- pulumi_azure_native/machinelearningservices/schedule.py +3 -3
- pulumi_azure_native/machinelearningservices/serverless_endpoint.py +3 -3
- pulumi_azure_native/machinelearningservices/v20200501preview/machine_learning_datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20200801/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20200901preview/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/environment_specification_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210301preview/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210401/machine_learning_compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20210401/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220101preview/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220101preview/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20220201preview/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/featureset_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/featureset_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/featurestore_entity_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/featurestore_entity_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/managed_network_settings_rule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230401preview/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/featureset_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/featureset_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/featurestore_entity_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/featurestore_entity_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/managed_network_settings_rule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230601preview/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/featureset_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/featureset_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/featurestore_entity_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/featurestore_entity_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/managed_network_settings_rule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/serverless_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20230801preview/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/featureset_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/featureset_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/featurestore_entity_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/featurestore_entity_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/managed_network_settings_rule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20231001/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/endpoint_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/featureset_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/featureset_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/featurestore_entity_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/featurestore_entity_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/managed_network_settings_rule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/marketplace_subscription.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/serverless_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240101preview/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/featureset_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/featureset_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/featurestore_entity_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/featurestore_entity_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/managed_network_settings_rule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/marketplace_subscription.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/serverless_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/batch_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/batch_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/compute.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/connection_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/connection_rai_blocklist.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/connection_rai_blocklist_item.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/connection_rai_policy.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/datastore.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/endpoint_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/featureset_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/featureset_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/featurestore_entity_container_entity.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/featurestore_entity_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/job.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/managed_network_settings_rule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/marketplace_subscription.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/online_deployment.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/online_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/rai_policy.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_code_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_code_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_component_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_component_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_data_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_data_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_environment_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_environment_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_model_container.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/registry_model_version.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/schedule.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/serverless_endpoint.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/workspace.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240401preview/workspace_connection.py +1 -1
- pulumi_azure_native/machinelearningservices/v20240701preview/__init__.py +116 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/_enums.py +2146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/_inputs.py +36877 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/batch_deployment.py +386 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/batch_endpoint.py +365 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/code_container.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/code_version.py +241 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/component_container.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/component_version.py +241 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/compute.py +337 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/connection_deployment.py +233 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/connection_rai_blocklist.py +240 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/connection_rai_blocklist_item.py +261 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/connection_rai_policy.py +243 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/data_container.py +221 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/data_version.py +241 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/datastore.py +241 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/endpoint_deployment.py +233 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/environment_container.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/environment_version.py +242 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/featureset_container_entity.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/featureset_version.py +242 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/featurestore_entity_container_entity.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/featurestore_entity_version.py +242 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_batch_deployment.py +206 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_batch_endpoint.py +201 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_code_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_code_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_component_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_component_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_compute.py +193 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_compute_allowed_resize_sizes.py +89 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_connection_deployment.py +138 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_connection_rai_blocklist.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_connection_rai_blocklist_item.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_connection_rai_policy.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_data_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_data_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_datastore.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_endpoint_deployment.py +138 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_environment_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_environment_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_featureset_container_entity.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_featureset_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_featurestore_entity_container_entity.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_featurestore_entity_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_job.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_managed_network_settings_rule.py +136 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_marketplace_subscription.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_model_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_model_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_online_deployment.py +206 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_online_deployment_logs.py +99 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_online_endpoint.py +201 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_online_endpoint_token.py +127 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_private_endpoint_connection.py +216 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_rai_policy.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry.py +196 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_code_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_code_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_component_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_component_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_data_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_data_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_environment_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_environment_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_model_container.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_registry_model_version.py +146 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_schedule.py +141 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_serverless_endpoint.py +201 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_workspace.py +711 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/get_workspace_connection.py +133 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/job.py +222 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_batch_endpoint_keys.py +101 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_compute_keys.py +88 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_compute_nodes.py +102 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_connection_models.py +92 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_datastore_secrets.py +98 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_endpoint_keys.py +84 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_online_endpoint_keys.py +101 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_serverless_endpoint_keys.py +101 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_workspace_connection_secrets.py +133 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_workspace_keys.py +125 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_workspace_notebook_access_token.py +145 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_workspace_notebook_keys.py +91 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/list_workspace_storage_account_keys.py +78 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/managed_network_settings_rule.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/marketplace_subscription.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/model_container.py +220 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/model_version.py +241 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/online_deployment.py +386 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/online_endpoint.py +365 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/outputs.py +32855 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/private_endpoint_connection.py +368 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/rai_policy.py +243 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry.py +344 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_code_container.py +221 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_code_version.py +242 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_component_container.py +221 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_component_version.py +242 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_data_container.py +221 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_data_version.py +241 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_environment_container.py +221 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_environment_version.py +243 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_model_container.py +221 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/registry_model_version.py +242 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/schedule.py +221 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/serverless_endpoint.py +364 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/workspace.py +1296 -0
- pulumi_azure_native/machinelearningservices/v20240701preview/workspace_connection.py +212 -0
- pulumi_azure_native/machinelearningservices/workspace.py +3 -3
- pulumi_azure_native/machinelearningservices/workspace_connection.py +3 -3
- pulumi_azure_native/monitor/v20231001preview/azure_monitor_workspace.py +10 -0
- pulumi_azure_native/monitor/v20231001preview/get_azure_monitor_workspace.py +14 -1
- pulumi_azure_native/netapp/__init__.py +3 -0
- pulumi_azure_native/netapp/account.py +3 -3
- pulumi_azure_native/netapp/backup.py +2 -2
- pulumi_azure_native/netapp/backup_policy.py +3 -3
- pulumi_azure_native/netapp/backup_vault.py +3 -3
- pulumi_azure_native/netapp/get_account.py +2 -2
- pulumi_azure_native/netapp/get_backup.py +2 -2
- pulumi_azure_native/netapp/get_backup_policy.py +2 -2
- pulumi_azure_native/netapp/get_backup_vault.py +2 -2
- pulumi_azure_native/netapp/get_pool.py +2 -2
- pulumi_azure_native/netapp/get_snapshot.py +2 -2
- pulumi_azure_native/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure_native/netapp/get_subvolume.py +2 -2
- pulumi_azure_native/netapp/get_subvolume_metadata.py +2 -2
- pulumi_azure_native/netapp/get_volume.py +2 -2
- pulumi_azure_native/netapp/get_volume_group.py +2 -2
- pulumi_azure_native/netapp/get_volume_group_id_for_ldap_user.py +2 -2
- pulumi_azure_native/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure_native/netapp/list_volume_replications.py +2 -2
- pulumi_azure_native/netapp/pool.py +3 -3
- pulumi_azure_native/netapp/snapshot.py +3 -3
- pulumi_azure_native/netapp/snapshot_policy.py +3 -3
- pulumi_azure_native/netapp/subvolume.py +3 -3
- pulumi_azure_native/netapp/v20210401/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20210401preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20211001/volume.py +1 -1
- pulumi_azure_native/netapp/v20211001/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20220501/account.py +1 -1
- pulumi_azure_native/netapp/v20221101/account.py +1 -1
- pulumi_azure_native/netapp/v20221101/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101/pool.py +1 -1
- pulumi_azure_native/netapp/v20221101/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20221101/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20221101/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/account.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20221101preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230501/account.py +1 -1
- pulumi_azure_native/netapp/v20230501/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501/pool.py +1 -1
- pulumi_azure_native/netapp/v20230501/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230501/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230501/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/account.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230501preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230701/account.py +1 -1
- pulumi_azure_native/netapp/v20230701/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701/pool.py +1 -1
- pulumi_azure_native/netapp/v20230701/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230701/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230701/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/account.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20230701preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20231101/account.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20231101/pool.py +1 -1
- pulumi_azure_native/netapp/v20231101/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20231101/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20231101/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/account.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20231101preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/v20240301/__init__.py +35 -0
- pulumi_azure_native/netapp/v20240301/_enums.py +267 -0
- pulumi_azure_native/netapp/v20240301/_inputs.py +2945 -0
- pulumi_azure_native/netapp/v20240301/account.py +346 -0
- pulumi_azure_native/netapp/v20240301/backup.py +402 -0
- pulumi_azure_native/netapp/v20240301/backup_policy.py +414 -0
- pulumi_azure_native/netapp/v20240301/backup_vault.py +258 -0
- pulumi_azure_native/netapp/v20240301/get_account.py +227 -0
- pulumi_azure_native/netapp/v20240301/get_backup.py +276 -0
- pulumi_azure_native/netapp/v20240301/get_backup_policy.py +271 -0
- pulumi_azure_native/netapp/v20240301/get_backup_vault.py +167 -0
- pulumi_azure_native/netapp/v20240301/get_pool.py +284 -0
- pulumi_azure_native/netapp/v20240301/get_snapshot.py +190 -0
- pulumi_azure_native/netapp/v20240301/get_snapshot_policy.py +245 -0
- pulumi_azure_native/netapp/v20240301/get_subvolume.py +190 -0
- pulumi_azure_native/netapp/v20240301/get_subvolume_metadata.py +254 -0
- pulumi_azure_native/netapp/v20240301/get_volume.py +887 -0
- pulumi_azure_native/netapp/v20240301/get_volume_group.py +167 -0
- pulumi_azure_native/netapp/v20240301/get_volume_group_id_for_ldap_user.py +98 -0
- pulumi_azure_native/netapp/v20240301/get_volume_quota_rule.py +216 -0
- pulumi_azure_native/netapp/v20240301/list_volume_replications.py +94 -0
- pulumi_azure_native/netapp/v20240301/outputs.py +3035 -0
- pulumi_azure_native/netapp/v20240301/pool.py +462 -0
- pulumi_azure_native/netapp/v20240301/snapshot.py +291 -0
- pulumi_azure_native/netapp/v20240301/snapshot_policy.py +414 -0
- pulumi_azure_native/netapp/v20240301/subvolume.py +329 -0
- pulumi_azure_native/netapp/v20240301/volume.py +1639 -0
- pulumi_azure_native/netapp/v20240301/volume_group.py +279 -0
- pulumi_azure_native/netapp/v20240301/volume_quota_rule.py +388 -0
- pulumi_azure_native/netapp/v20240301preview/account.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/backup_vault.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/pool.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/snapshot.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/snapshot_policy.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/subvolume.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume_group.py +1 -1
- pulumi_azure_native/netapp/v20240301preview/volume_quota_rule.py +1 -1
- pulumi_azure_native/netapp/volume.py +3 -3
- pulumi_azure_native/netapp/volume_group.py +3 -3
- pulumi_azure_native/netapp/volume_quota_rule.py +3 -3
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/resourcegraph/__init__.py +3 -0
- pulumi_azure_native/resourcegraph/get_graph_query.py +2 -2
- pulumi_azure_native/resourcegraph/graph_query.py +3 -3
- pulumi_azure_native/resourcegraph/v20180901preview/graph_query.py +1 -1
- pulumi_azure_native/resourcegraph/v20190401/graph_query.py +1 -1
- pulumi_azure_native/resourcegraph/v20200401preview/graph_query.py +1 -1
- pulumi_azure_native/resourcegraph/v20210301/graph_query.py +1 -1
- pulumi_azure_native/resourcegraph/v20221001/graph_query.py +1 -1
- pulumi_azure_native/resourcegraph/v20240401/__init__.py +10 -0
- pulumi_azure_native/resourcegraph/v20240401/get_graph_query.py +214 -0
- pulumi_azure_native/resourcegraph/v20240401/graph_query.py +316 -0
- pulumi_azure_native/resourcegraph/v20240401/outputs.py +130 -0
- pulumi_azure_native/standbypool/__init__.py +3 -0
- pulumi_azure_native/standbypool/get_standby_container_group_pool.py +4 -0
- pulumi_azure_native/standbypool/get_standby_virtual_machine_pool.py +4 -0
- pulumi_azure_native/standbypool/standby_container_group_pool.py +5 -1
- pulumi_azure_native/standbypool/standby_virtual_machine_pool.py +5 -1
- pulumi_azure_native/standbypool/v20231201preview/standby_container_group_pool.py +1 -1
- pulumi_azure_native/standbypool/v20231201preview/standby_virtual_machine_pool.py +1 -1
- pulumi_azure_native/standbypool/v20240301preview/__init__.py +14 -0
- pulumi_azure_native/standbypool/v20240301preview/_enums.py +34 -0
- pulumi_azure_native/standbypool/v20240301preview/_inputs.py +287 -0
- pulumi_azure_native/standbypool/v20240301preview/get_standby_container_group_pool.py +188 -0
- pulumi_azure_native/standbypool/v20240301preview/get_standby_virtual_machine_pool.py +201 -0
- pulumi_azure_native/standbypool/v20240301preview/outputs.py +352 -0
- pulumi_azure_native/standbypool/v20240301preview/standby_container_group_pool.py +299 -0
- pulumi_azure_native/standbypool/v20240301preview/standby_virtual_machine_pool.py +327 -0
- pulumi_azure_native/web/v20231201/_inputs.py +20 -20
- pulumi_azure_native/web/v20231201/outputs.py +12 -12
- {pulumi_azure_native-2.51.0a1721725880.dist-info → pulumi_azure_native-2.52.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.51.0a1721725880.dist-info → pulumi_azure_native-2.52.0.dist-info}/RECORD +1175 -885
- {pulumi_azure_native-2.51.0a1721725880.dist-info → pulumi_azure_native-2.52.0.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.51.0a1721725880.dist-info → pulumi_azure_native-2.52.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,3491 @@
|
|
|
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 sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'ApplicationGetEndpointResponse',
|
|
21
|
+
'ApplicationGetHttpsEndpointResponse',
|
|
22
|
+
'ApplicationPropertiesResponse',
|
|
23
|
+
'AutoscaleCapacityResponse',
|
|
24
|
+
'AutoscaleRecurrenceResponse',
|
|
25
|
+
'AutoscaleResponse',
|
|
26
|
+
'AutoscaleScheduleResponse',
|
|
27
|
+
'AutoscaleTimeAndCapacityResponse',
|
|
28
|
+
'ClientGroupInfoResponse',
|
|
29
|
+
'ClusterDefinitionResponse',
|
|
30
|
+
'ClusterGetPropertiesResponse',
|
|
31
|
+
'ClusterIdentityResponse',
|
|
32
|
+
'ComputeIsolationPropertiesResponse',
|
|
33
|
+
'ComputeProfileResponse',
|
|
34
|
+
'ConnectivityEndpointResponse',
|
|
35
|
+
'DataDisksGroupsResponse',
|
|
36
|
+
'DiskEncryptionPropertiesResponse',
|
|
37
|
+
'EncryptionInTransitPropertiesResponse',
|
|
38
|
+
'ErrorsResponse',
|
|
39
|
+
'ExcludedServicesConfigResponse',
|
|
40
|
+
'HardwareProfileResponse',
|
|
41
|
+
'IPConfigurationResponse',
|
|
42
|
+
'IpTagResponse',
|
|
43
|
+
'KafkaRestPropertiesResponse',
|
|
44
|
+
'LinuxOperatingSystemProfileResponse',
|
|
45
|
+
'NetworkPropertiesResponse',
|
|
46
|
+
'OsProfileResponse',
|
|
47
|
+
'PrivateEndpointConnectionResponse',
|
|
48
|
+
'PrivateEndpointResponse',
|
|
49
|
+
'PrivateLinkConfigurationResponse',
|
|
50
|
+
'PrivateLinkServiceConnectionStateResponse',
|
|
51
|
+
'QuotaInfoResponse',
|
|
52
|
+
'ResourceIdResponse',
|
|
53
|
+
'RoleResponse',
|
|
54
|
+
'RuntimeScriptActionResponse',
|
|
55
|
+
'ScriptActionResponse',
|
|
56
|
+
'SecurityProfileResponse',
|
|
57
|
+
'SshProfileResponse',
|
|
58
|
+
'SshPublicKeyResponse',
|
|
59
|
+
'StorageAccountResponse',
|
|
60
|
+
'StorageProfileResponse',
|
|
61
|
+
'SystemDataResponse',
|
|
62
|
+
'UserAssignedIdentityResponse',
|
|
63
|
+
'VirtualNetworkProfileResponse',
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
@pulumi.output_type
|
|
67
|
+
class ApplicationGetEndpointResponse(dict):
|
|
68
|
+
"""
|
|
69
|
+
Gets the application SSH endpoint
|
|
70
|
+
"""
|
|
71
|
+
@staticmethod
|
|
72
|
+
def __key_warning(key: str):
|
|
73
|
+
suggest = None
|
|
74
|
+
if key == "destinationPort":
|
|
75
|
+
suggest = "destination_port"
|
|
76
|
+
elif key == "privateIPAddress":
|
|
77
|
+
suggest = "private_ip_address"
|
|
78
|
+
elif key == "publicPort":
|
|
79
|
+
suggest = "public_port"
|
|
80
|
+
|
|
81
|
+
if suggest:
|
|
82
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationGetEndpointResponse. Access the value via the '{suggest}' property getter instead.")
|
|
83
|
+
|
|
84
|
+
def __getitem__(self, key: str) -> Any:
|
|
85
|
+
ApplicationGetEndpointResponse.__key_warning(key)
|
|
86
|
+
return super().__getitem__(key)
|
|
87
|
+
|
|
88
|
+
def get(self, key: str, default = None) -> Any:
|
|
89
|
+
ApplicationGetEndpointResponse.__key_warning(key)
|
|
90
|
+
return super().get(key, default)
|
|
91
|
+
|
|
92
|
+
def __init__(__self__, *,
|
|
93
|
+
destination_port: Optional[int] = None,
|
|
94
|
+
location: Optional[str] = None,
|
|
95
|
+
private_ip_address: Optional[str] = None,
|
|
96
|
+
public_port: Optional[int] = None):
|
|
97
|
+
"""
|
|
98
|
+
Gets the application SSH endpoint
|
|
99
|
+
:param int destination_port: The destination port to connect to.
|
|
100
|
+
:param str location: The location of the endpoint.
|
|
101
|
+
:param str private_ip_address: The private ip address of the endpoint.
|
|
102
|
+
:param int public_port: The public port to connect to.
|
|
103
|
+
"""
|
|
104
|
+
if destination_port is not None:
|
|
105
|
+
pulumi.set(__self__, "destination_port", destination_port)
|
|
106
|
+
if location is not None:
|
|
107
|
+
pulumi.set(__self__, "location", location)
|
|
108
|
+
if private_ip_address is not None:
|
|
109
|
+
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
|
110
|
+
if public_port is not None:
|
|
111
|
+
pulumi.set(__self__, "public_port", public_port)
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="destinationPort")
|
|
115
|
+
def destination_port(self) -> Optional[int]:
|
|
116
|
+
"""
|
|
117
|
+
The destination port to connect to.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "destination_port")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def location(self) -> Optional[str]:
|
|
124
|
+
"""
|
|
125
|
+
The location of the endpoint.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "location")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter(name="privateIPAddress")
|
|
131
|
+
def private_ip_address(self) -> Optional[str]:
|
|
132
|
+
"""
|
|
133
|
+
The private ip address of the endpoint.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "private_ip_address")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="publicPort")
|
|
139
|
+
def public_port(self) -> Optional[int]:
|
|
140
|
+
"""
|
|
141
|
+
The public port to connect to.
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "public_port")
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
@pulumi.output_type
|
|
147
|
+
class ApplicationGetHttpsEndpointResponse(dict):
|
|
148
|
+
"""
|
|
149
|
+
Gets the application HTTP endpoints.
|
|
150
|
+
"""
|
|
151
|
+
@staticmethod
|
|
152
|
+
def __key_warning(key: str):
|
|
153
|
+
suggest = None
|
|
154
|
+
if key == "publicPort":
|
|
155
|
+
suggest = "public_port"
|
|
156
|
+
elif key == "accessModes":
|
|
157
|
+
suggest = "access_modes"
|
|
158
|
+
elif key == "destinationPort":
|
|
159
|
+
suggest = "destination_port"
|
|
160
|
+
elif key == "disableGatewayAuth":
|
|
161
|
+
suggest = "disable_gateway_auth"
|
|
162
|
+
elif key == "privateIPAddress":
|
|
163
|
+
suggest = "private_ip_address"
|
|
164
|
+
|
|
165
|
+
if suggest:
|
|
166
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationGetHttpsEndpointResponse. Access the value via the '{suggest}' property getter instead.")
|
|
167
|
+
|
|
168
|
+
def __getitem__(self, key: str) -> Any:
|
|
169
|
+
ApplicationGetHttpsEndpointResponse.__key_warning(key)
|
|
170
|
+
return super().__getitem__(key)
|
|
171
|
+
|
|
172
|
+
def get(self, key: str, default = None) -> Any:
|
|
173
|
+
ApplicationGetHttpsEndpointResponse.__key_warning(key)
|
|
174
|
+
return super().get(key, default)
|
|
175
|
+
|
|
176
|
+
def __init__(__self__, *,
|
|
177
|
+
location: str,
|
|
178
|
+
public_port: int,
|
|
179
|
+
access_modes: Optional[Sequence[str]] = None,
|
|
180
|
+
destination_port: Optional[int] = None,
|
|
181
|
+
disable_gateway_auth: Optional[bool] = None,
|
|
182
|
+
private_ip_address: Optional[str] = None):
|
|
183
|
+
"""
|
|
184
|
+
Gets the application HTTP endpoints.
|
|
185
|
+
:param str location: The location of the endpoint.
|
|
186
|
+
:param int public_port: The public port to connect to.
|
|
187
|
+
:param Sequence[str] access_modes: The list of access modes for the application.
|
|
188
|
+
:param int destination_port: The destination port to connect to.
|
|
189
|
+
:param bool disable_gateway_auth: The value indicates whether to disable GatewayAuth.
|
|
190
|
+
:param str private_ip_address: The private ip address of the endpoint.
|
|
191
|
+
"""
|
|
192
|
+
pulumi.set(__self__, "location", location)
|
|
193
|
+
pulumi.set(__self__, "public_port", public_port)
|
|
194
|
+
if access_modes is not None:
|
|
195
|
+
pulumi.set(__self__, "access_modes", access_modes)
|
|
196
|
+
if destination_port is not None:
|
|
197
|
+
pulumi.set(__self__, "destination_port", destination_port)
|
|
198
|
+
if disable_gateway_auth is not None:
|
|
199
|
+
pulumi.set(__self__, "disable_gateway_auth", disable_gateway_auth)
|
|
200
|
+
if private_ip_address is not None:
|
|
201
|
+
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
@pulumi.getter
|
|
205
|
+
def location(self) -> str:
|
|
206
|
+
"""
|
|
207
|
+
The location of the endpoint.
|
|
208
|
+
"""
|
|
209
|
+
return pulumi.get(self, "location")
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
@pulumi.getter(name="publicPort")
|
|
213
|
+
def public_port(self) -> int:
|
|
214
|
+
"""
|
|
215
|
+
The public port to connect to.
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "public_port")
|
|
218
|
+
|
|
219
|
+
@property
|
|
220
|
+
@pulumi.getter(name="accessModes")
|
|
221
|
+
def access_modes(self) -> Optional[Sequence[str]]:
|
|
222
|
+
"""
|
|
223
|
+
The list of access modes for the application.
|
|
224
|
+
"""
|
|
225
|
+
return pulumi.get(self, "access_modes")
|
|
226
|
+
|
|
227
|
+
@property
|
|
228
|
+
@pulumi.getter(name="destinationPort")
|
|
229
|
+
def destination_port(self) -> Optional[int]:
|
|
230
|
+
"""
|
|
231
|
+
The destination port to connect to.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "destination_port")
|
|
234
|
+
|
|
235
|
+
@property
|
|
236
|
+
@pulumi.getter(name="disableGatewayAuth")
|
|
237
|
+
def disable_gateway_auth(self) -> Optional[bool]:
|
|
238
|
+
"""
|
|
239
|
+
The value indicates whether to disable GatewayAuth.
|
|
240
|
+
"""
|
|
241
|
+
return pulumi.get(self, "disable_gateway_auth")
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
@pulumi.getter(name="privateIPAddress")
|
|
245
|
+
def private_ip_address(self) -> Optional[str]:
|
|
246
|
+
"""
|
|
247
|
+
The private ip address of the endpoint.
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "private_ip_address")
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
@pulumi.output_type
|
|
253
|
+
class ApplicationPropertiesResponse(dict):
|
|
254
|
+
"""
|
|
255
|
+
The HDInsight cluster application GET response.
|
|
256
|
+
"""
|
|
257
|
+
@staticmethod
|
|
258
|
+
def __key_warning(key: str):
|
|
259
|
+
suggest = None
|
|
260
|
+
if key == "applicationState":
|
|
261
|
+
suggest = "application_state"
|
|
262
|
+
elif key == "createdDate":
|
|
263
|
+
suggest = "created_date"
|
|
264
|
+
elif key == "marketplaceIdentifier":
|
|
265
|
+
suggest = "marketplace_identifier"
|
|
266
|
+
elif key == "provisioningState":
|
|
267
|
+
suggest = "provisioning_state"
|
|
268
|
+
elif key == "applicationType":
|
|
269
|
+
suggest = "application_type"
|
|
270
|
+
elif key == "computeProfile":
|
|
271
|
+
suggest = "compute_profile"
|
|
272
|
+
elif key == "httpsEndpoints":
|
|
273
|
+
suggest = "https_endpoints"
|
|
274
|
+
elif key == "installScriptActions":
|
|
275
|
+
suggest = "install_script_actions"
|
|
276
|
+
elif key == "privateLinkConfigurations":
|
|
277
|
+
suggest = "private_link_configurations"
|
|
278
|
+
elif key == "sshEndpoints":
|
|
279
|
+
suggest = "ssh_endpoints"
|
|
280
|
+
elif key == "uninstallScriptActions":
|
|
281
|
+
suggest = "uninstall_script_actions"
|
|
282
|
+
|
|
283
|
+
if suggest:
|
|
284
|
+
pulumi.log.warn(f"Key '{key}' not found in ApplicationPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
285
|
+
|
|
286
|
+
def __getitem__(self, key: str) -> Any:
|
|
287
|
+
ApplicationPropertiesResponse.__key_warning(key)
|
|
288
|
+
return super().__getitem__(key)
|
|
289
|
+
|
|
290
|
+
def get(self, key: str, default = None) -> Any:
|
|
291
|
+
ApplicationPropertiesResponse.__key_warning(key)
|
|
292
|
+
return super().get(key, default)
|
|
293
|
+
|
|
294
|
+
def __init__(__self__, *,
|
|
295
|
+
application_state: str,
|
|
296
|
+
created_date: str,
|
|
297
|
+
marketplace_identifier: str,
|
|
298
|
+
provisioning_state: str,
|
|
299
|
+
application_type: Optional[str] = None,
|
|
300
|
+
compute_profile: Optional['outputs.ComputeProfileResponse'] = None,
|
|
301
|
+
errors: Optional[Sequence['outputs.ErrorsResponse']] = None,
|
|
302
|
+
https_endpoints: Optional[Sequence['outputs.ApplicationGetHttpsEndpointResponse']] = None,
|
|
303
|
+
install_script_actions: Optional[Sequence['outputs.RuntimeScriptActionResponse']] = None,
|
|
304
|
+
private_link_configurations: Optional[Sequence['outputs.PrivateLinkConfigurationResponse']] = None,
|
|
305
|
+
ssh_endpoints: Optional[Sequence['outputs.ApplicationGetEndpointResponse']] = None,
|
|
306
|
+
uninstall_script_actions: Optional[Sequence['outputs.RuntimeScriptActionResponse']] = None):
|
|
307
|
+
"""
|
|
308
|
+
The HDInsight cluster application GET response.
|
|
309
|
+
:param str application_state: The application state.
|
|
310
|
+
:param str created_date: The application create date time.
|
|
311
|
+
:param str marketplace_identifier: The marketplace identifier.
|
|
312
|
+
:param str provisioning_state: The provisioning state of the application.
|
|
313
|
+
:param str application_type: The application type.
|
|
314
|
+
:param 'ComputeProfileResponse' compute_profile: The list of roles in the cluster.
|
|
315
|
+
:param Sequence['ErrorsResponse'] errors: The list of errors.
|
|
316
|
+
:param Sequence['ApplicationGetHttpsEndpointResponse'] https_endpoints: The list of application HTTPS endpoints.
|
|
317
|
+
:param Sequence['RuntimeScriptActionResponse'] install_script_actions: The list of install script actions.
|
|
318
|
+
:param Sequence['PrivateLinkConfigurationResponse'] private_link_configurations: The private link configurations.
|
|
319
|
+
:param Sequence['ApplicationGetEndpointResponse'] ssh_endpoints: The list of application SSH endpoints.
|
|
320
|
+
:param Sequence['RuntimeScriptActionResponse'] uninstall_script_actions: The list of uninstall script actions.
|
|
321
|
+
"""
|
|
322
|
+
pulumi.set(__self__, "application_state", application_state)
|
|
323
|
+
pulumi.set(__self__, "created_date", created_date)
|
|
324
|
+
pulumi.set(__self__, "marketplace_identifier", marketplace_identifier)
|
|
325
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
326
|
+
if application_type is not None:
|
|
327
|
+
pulumi.set(__self__, "application_type", application_type)
|
|
328
|
+
if compute_profile is not None:
|
|
329
|
+
pulumi.set(__self__, "compute_profile", compute_profile)
|
|
330
|
+
if errors is not None:
|
|
331
|
+
pulumi.set(__self__, "errors", errors)
|
|
332
|
+
if https_endpoints is not None:
|
|
333
|
+
pulumi.set(__self__, "https_endpoints", https_endpoints)
|
|
334
|
+
if install_script_actions is not None:
|
|
335
|
+
pulumi.set(__self__, "install_script_actions", install_script_actions)
|
|
336
|
+
if private_link_configurations is not None:
|
|
337
|
+
pulumi.set(__self__, "private_link_configurations", private_link_configurations)
|
|
338
|
+
if ssh_endpoints is not None:
|
|
339
|
+
pulumi.set(__self__, "ssh_endpoints", ssh_endpoints)
|
|
340
|
+
if uninstall_script_actions is not None:
|
|
341
|
+
pulumi.set(__self__, "uninstall_script_actions", uninstall_script_actions)
|
|
342
|
+
|
|
343
|
+
@property
|
|
344
|
+
@pulumi.getter(name="applicationState")
|
|
345
|
+
def application_state(self) -> str:
|
|
346
|
+
"""
|
|
347
|
+
The application state.
|
|
348
|
+
"""
|
|
349
|
+
return pulumi.get(self, "application_state")
|
|
350
|
+
|
|
351
|
+
@property
|
|
352
|
+
@pulumi.getter(name="createdDate")
|
|
353
|
+
def created_date(self) -> str:
|
|
354
|
+
"""
|
|
355
|
+
The application create date time.
|
|
356
|
+
"""
|
|
357
|
+
return pulumi.get(self, "created_date")
|
|
358
|
+
|
|
359
|
+
@property
|
|
360
|
+
@pulumi.getter(name="marketplaceIdentifier")
|
|
361
|
+
def marketplace_identifier(self) -> str:
|
|
362
|
+
"""
|
|
363
|
+
The marketplace identifier.
|
|
364
|
+
"""
|
|
365
|
+
return pulumi.get(self, "marketplace_identifier")
|
|
366
|
+
|
|
367
|
+
@property
|
|
368
|
+
@pulumi.getter(name="provisioningState")
|
|
369
|
+
def provisioning_state(self) -> str:
|
|
370
|
+
"""
|
|
371
|
+
The provisioning state of the application.
|
|
372
|
+
"""
|
|
373
|
+
return pulumi.get(self, "provisioning_state")
|
|
374
|
+
|
|
375
|
+
@property
|
|
376
|
+
@pulumi.getter(name="applicationType")
|
|
377
|
+
def application_type(self) -> Optional[str]:
|
|
378
|
+
"""
|
|
379
|
+
The application type.
|
|
380
|
+
"""
|
|
381
|
+
return pulumi.get(self, "application_type")
|
|
382
|
+
|
|
383
|
+
@property
|
|
384
|
+
@pulumi.getter(name="computeProfile")
|
|
385
|
+
def compute_profile(self) -> Optional['outputs.ComputeProfileResponse']:
|
|
386
|
+
"""
|
|
387
|
+
The list of roles in the cluster.
|
|
388
|
+
"""
|
|
389
|
+
return pulumi.get(self, "compute_profile")
|
|
390
|
+
|
|
391
|
+
@property
|
|
392
|
+
@pulumi.getter
|
|
393
|
+
def errors(self) -> Optional[Sequence['outputs.ErrorsResponse']]:
|
|
394
|
+
"""
|
|
395
|
+
The list of errors.
|
|
396
|
+
"""
|
|
397
|
+
return pulumi.get(self, "errors")
|
|
398
|
+
|
|
399
|
+
@property
|
|
400
|
+
@pulumi.getter(name="httpsEndpoints")
|
|
401
|
+
def https_endpoints(self) -> Optional[Sequence['outputs.ApplicationGetHttpsEndpointResponse']]:
|
|
402
|
+
"""
|
|
403
|
+
The list of application HTTPS endpoints.
|
|
404
|
+
"""
|
|
405
|
+
return pulumi.get(self, "https_endpoints")
|
|
406
|
+
|
|
407
|
+
@property
|
|
408
|
+
@pulumi.getter(name="installScriptActions")
|
|
409
|
+
def install_script_actions(self) -> Optional[Sequence['outputs.RuntimeScriptActionResponse']]:
|
|
410
|
+
"""
|
|
411
|
+
The list of install script actions.
|
|
412
|
+
"""
|
|
413
|
+
return pulumi.get(self, "install_script_actions")
|
|
414
|
+
|
|
415
|
+
@property
|
|
416
|
+
@pulumi.getter(name="privateLinkConfigurations")
|
|
417
|
+
def private_link_configurations(self) -> Optional[Sequence['outputs.PrivateLinkConfigurationResponse']]:
|
|
418
|
+
"""
|
|
419
|
+
The private link configurations.
|
|
420
|
+
"""
|
|
421
|
+
return pulumi.get(self, "private_link_configurations")
|
|
422
|
+
|
|
423
|
+
@property
|
|
424
|
+
@pulumi.getter(name="sshEndpoints")
|
|
425
|
+
def ssh_endpoints(self) -> Optional[Sequence['outputs.ApplicationGetEndpointResponse']]:
|
|
426
|
+
"""
|
|
427
|
+
The list of application SSH endpoints.
|
|
428
|
+
"""
|
|
429
|
+
return pulumi.get(self, "ssh_endpoints")
|
|
430
|
+
|
|
431
|
+
@property
|
|
432
|
+
@pulumi.getter(name="uninstallScriptActions")
|
|
433
|
+
def uninstall_script_actions(self) -> Optional[Sequence['outputs.RuntimeScriptActionResponse']]:
|
|
434
|
+
"""
|
|
435
|
+
The list of uninstall script actions.
|
|
436
|
+
"""
|
|
437
|
+
return pulumi.get(self, "uninstall_script_actions")
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
@pulumi.output_type
|
|
441
|
+
class AutoscaleCapacityResponse(dict):
|
|
442
|
+
"""
|
|
443
|
+
The load-based autoscale request parameters
|
|
444
|
+
"""
|
|
445
|
+
@staticmethod
|
|
446
|
+
def __key_warning(key: str):
|
|
447
|
+
suggest = None
|
|
448
|
+
if key == "maxInstanceCount":
|
|
449
|
+
suggest = "max_instance_count"
|
|
450
|
+
elif key == "minInstanceCount":
|
|
451
|
+
suggest = "min_instance_count"
|
|
452
|
+
|
|
453
|
+
if suggest:
|
|
454
|
+
pulumi.log.warn(f"Key '{key}' not found in AutoscaleCapacityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
455
|
+
|
|
456
|
+
def __getitem__(self, key: str) -> Any:
|
|
457
|
+
AutoscaleCapacityResponse.__key_warning(key)
|
|
458
|
+
return super().__getitem__(key)
|
|
459
|
+
|
|
460
|
+
def get(self, key: str, default = None) -> Any:
|
|
461
|
+
AutoscaleCapacityResponse.__key_warning(key)
|
|
462
|
+
return super().get(key, default)
|
|
463
|
+
|
|
464
|
+
def __init__(__self__, *,
|
|
465
|
+
max_instance_count: Optional[int] = None,
|
|
466
|
+
min_instance_count: Optional[int] = None):
|
|
467
|
+
"""
|
|
468
|
+
The load-based autoscale request parameters
|
|
469
|
+
:param int max_instance_count: The maximum instance count of the cluster
|
|
470
|
+
:param int min_instance_count: The minimum instance count of the cluster
|
|
471
|
+
"""
|
|
472
|
+
if max_instance_count is not None:
|
|
473
|
+
pulumi.set(__self__, "max_instance_count", max_instance_count)
|
|
474
|
+
if min_instance_count is not None:
|
|
475
|
+
pulumi.set(__self__, "min_instance_count", min_instance_count)
|
|
476
|
+
|
|
477
|
+
@property
|
|
478
|
+
@pulumi.getter(name="maxInstanceCount")
|
|
479
|
+
def max_instance_count(self) -> Optional[int]:
|
|
480
|
+
"""
|
|
481
|
+
The maximum instance count of the cluster
|
|
482
|
+
"""
|
|
483
|
+
return pulumi.get(self, "max_instance_count")
|
|
484
|
+
|
|
485
|
+
@property
|
|
486
|
+
@pulumi.getter(name="minInstanceCount")
|
|
487
|
+
def min_instance_count(self) -> Optional[int]:
|
|
488
|
+
"""
|
|
489
|
+
The minimum instance count of the cluster
|
|
490
|
+
"""
|
|
491
|
+
return pulumi.get(self, "min_instance_count")
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
@pulumi.output_type
|
|
495
|
+
class AutoscaleRecurrenceResponse(dict):
|
|
496
|
+
"""
|
|
497
|
+
Schedule-based autoscale request parameters
|
|
498
|
+
"""
|
|
499
|
+
@staticmethod
|
|
500
|
+
def __key_warning(key: str):
|
|
501
|
+
suggest = None
|
|
502
|
+
if key == "timeZone":
|
|
503
|
+
suggest = "time_zone"
|
|
504
|
+
|
|
505
|
+
if suggest:
|
|
506
|
+
pulumi.log.warn(f"Key '{key}' not found in AutoscaleRecurrenceResponse. Access the value via the '{suggest}' property getter instead.")
|
|
507
|
+
|
|
508
|
+
def __getitem__(self, key: str) -> Any:
|
|
509
|
+
AutoscaleRecurrenceResponse.__key_warning(key)
|
|
510
|
+
return super().__getitem__(key)
|
|
511
|
+
|
|
512
|
+
def get(self, key: str, default = None) -> Any:
|
|
513
|
+
AutoscaleRecurrenceResponse.__key_warning(key)
|
|
514
|
+
return super().get(key, default)
|
|
515
|
+
|
|
516
|
+
def __init__(__self__, *,
|
|
517
|
+
schedule: Optional[Sequence['outputs.AutoscaleScheduleResponse']] = None,
|
|
518
|
+
time_zone: Optional[str] = None):
|
|
519
|
+
"""
|
|
520
|
+
Schedule-based autoscale request parameters
|
|
521
|
+
:param Sequence['AutoscaleScheduleResponse'] schedule: Array of schedule-based autoscale rules
|
|
522
|
+
:param str time_zone: The time zone for the autoscale schedule times
|
|
523
|
+
"""
|
|
524
|
+
if schedule is not None:
|
|
525
|
+
pulumi.set(__self__, "schedule", schedule)
|
|
526
|
+
if time_zone is not None:
|
|
527
|
+
pulumi.set(__self__, "time_zone", time_zone)
|
|
528
|
+
|
|
529
|
+
@property
|
|
530
|
+
@pulumi.getter
|
|
531
|
+
def schedule(self) -> Optional[Sequence['outputs.AutoscaleScheduleResponse']]:
|
|
532
|
+
"""
|
|
533
|
+
Array of schedule-based autoscale rules
|
|
534
|
+
"""
|
|
535
|
+
return pulumi.get(self, "schedule")
|
|
536
|
+
|
|
537
|
+
@property
|
|
538
|
+
@pulumi.getter(name="timeZone")
|
|
539
|
+
def time_zone(self) -> Optional[str]:
|
|
540
|
+
"""
|
|
541
|
+
The time zone for the autoscale schedule times
|
|
542
|
+
"""
|
|
543
|
+
return pulumi.get(self, "time_zone")
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
@pulumi.output_type
|
|
547
|
+
class AutoscaleResponse(dict):
|
|
548
|
+
"""
|
|
549
|
+
The autoscale request parameters
|
|
550
|
+
"""
|
|
551
|
+
def __init__(__self__, *,
|
|
552
|
+
capacity: Optional['outputs.AutoscaleCapacityResponse'] = None,
|
|
553
|
+
recurrence: Optional['outputs.AutoscaleRecurrenceResponse'] = None):
|
|
554
|
+
"""
|
|
555
|
+
The autoscale request parameters
|
|
556
|
+
:param 'AutoscaleCapacityResponse' capacity: Parameters for load-based autoscale
|
|
557
|
+
:param 'AutoscaleRecurrenceResponse' recurrence: Parameters for schedule-based autoscale
|
|
558
|
+
"""
|
|
559
|
+
if capacity is not None:
|
|
560
|
+
pulumi.set(__self__, "capacity", capacity)
|
|
561
|
+
if recurrence is not None:
|
|
562
|
+
pulumi.set(__self__, "recurrence", recurrence)
|
|
563
|
+
|
|
564
|
+
@property
|
|
565
|
+
@pulumi.getter
|
|
566
|
+
def capacity(self) -> Optional['outputs.AutoscaleCapacityResponse']:
|
|
567
|
+
"""
|
|
568
|
+
Parameters for load-based autoscale
|
|
569
|
+
"""
|
|
570
|
+
return pulumi.get(self, "capacity")
|
|
571
|
+
|
|
572
|
+
@property
|
|
573
|
+
@pulumi.getter
|
|
574
|
+
def recurrence(self) -> Optional['outputs.AutoscaleRecurrenceResponse']:
|
|
575
|
+
"""
|
|
576
|
+
Parameters for schedule-based autoscale
|
|
577
|
+
"""
|
|
578
|
+
return pulumi.get(self, "recurrence")
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
@pulumi.output_type
|
|
582
|
+
class AutoscaleScheduleResponse(dict):
|
|
583
|
+
"""
|
|
584
|
+
Parameters for a schedule-based autoscale rule, consisting of an array of days + a time and capacity
|
|
585
|
+
"""
|
|
586
|
+
@staticmethod
|
|
587
|
+
def __key_warning(key: str):
|
|
588
|
+
suggest = None
|
|
589
|
+
if key == "timeAndCapacity":
|
|
590
|
+
suggest = "time_and_capacity"
|
|
591
|
+
|
|
592
|
+
if suggest:
|
|
593
|
+
pulumi.log.warn(f"Key '{key}' not found in AutoscaleScheduleResponse. Access the value via the '{suggest}' property getter instead.")
|
|
594
|
+
|
|
595
|
+
def __getitem__(self, key: str) -> Any:
|
|
596
|
+
AutoscaleScheduleResponse.__key_warning(key)
|
|
597
|
+
return super().__getitem__(key)
|
|
598
|
+
|
|
599
|
+
def get(self, key: str, default = None) -> Any:
|
|
600
|
+
AutoscaleScheduleResponse.__key_warning(key)
|
|
601
|
+
return super().get(key, default)
|
|
602
|
+
|
|
603
|
+
def __init__(__self__, *,
|
|
604
|
+
days: Optional[Sequence[str]] = None,
|
|
605
|
+
time_and_capacity: Optional['outputs.AutoscaleTimeAndCapacityResponse'] = None):
|
|
606
|
+
"""
|
|
607
|
+
Parameters for a schedule-based autoscale rule, consisting of an array of days + a time and capacity
|
|
608
|
+
:param Sequence[str] days: Days of the week for a schedule-based autoscale rule
|
|
609
|
+
:param 'AutoscaleTimeAndCapacityResponse' time_and_capacity: Time and capacity for a schedule-based autoscale rule
|
|
610
|
+
"""
|
|
611
|
+
if days is not None:
|
|
612
|
+
pulumi.set(__self__, "days", days)
|
|
613
|
+
if time_and_capacity is not None:
|
|
614
|
+
pulumi.set(__self__, "time_and_capacity", time_and_capacity)
|
|
615
|
+
|
|
616
|
+
@property
|
|
617
|
+
@pulumi.getter
|
|
618
|
+
def days(self) -> Optional[Sequence[str]]:
|
|
619
|
+
"""
|
|
620
|
+
Days of the week for a schedule-based autoscale rule
|
|
621
|
+
"""
|
|
622
|
+
return pulumi.get(self, "days")
|
|
623
|
+
|
|
624
|
+
@property
|
|
625
|
+
@pulumi.getter(name="timeAndCapacity")
|
|
626
|
+
def time_and_capacity(self) -> Optional['outputs.AutoscaleTimeAndCapacityResponse']:
|
|
627
|
+
"""
|
|
628
|
+
Time and capacity for a schedule-based autoscale rule
|
|
629
|
+
"""
|
|
630
|
+
return pulumi.get(self, "time_and_capacity")
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
@pulumi.output_type
|
|
634
|
+
class AutoscaleTimeAndCapacityResponse(dict):
|
|
635
|
+
"""
|
|
636
|
+
Time and capacity request parameters
|
|
637
|
+
"""
|
|
638
|
+
@staticmethod
|
|
639
|
+
def __key_warning(key: str):
|
|
640
|
+
suggest = None
|
|
641
|
+
if key == "maxInstanceCount":
|
|
642
|
+
suggest = "max_instance_count"
|
|
643
|
+
elif key == "minInstanceCount":
|
|
644
|
+
suggest = "min_instance_count"
|
|
645
|
+
|
|
646
|
+
if suggest:
|
|
647
|
+
pulumi.log.warn(f"Key '{key}' not found in AutoscaleTimeAndCapacityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
648
|
+
|
|
649
|
+
def __getitem__(self, key: str) -> Any:
|
|
650
|
+
AutoscaleTimeAndCapacityResponse.__key_warning(key)
|
|
651
|
+
return super().__getitem__(key)
|
|
652
|
+
|
|
653
|
+
def get(self, key: str, default = None) -> Any:
|
|
654
|
+
AutoscaleTimeAndCapacityResponse.__key_warning(key)
|
|
655
|
+
return super().get(key, default)
|
|
656
|
+
|
|
657
|
+
def __init__(__self__, *,
|
|
658
|
+
max_instance_count: Optional[int] = None,
|
|
659
|
+
min_instance_count: Optional[int] = None,
|
|
660
|
+
time: Optional[str] = None):
|
|
661
|
+
"""
|
|
662
|
+
Time and capacity request parameters
|
|
663
|
+
:param int max_instance_count: The maximum instance count of the cluster
|
|
664
|
+
:param int min_instance_count: The minimum instance count of the cluster
|
|
665
|
+
:param str time: 24-hour time in the form xx:xx
|
|
666
|
+
"""
|
|
667
|
+
if max_instance_count is not None:
|
|
668
|
+
pulumi.set(__self__, "max_instance_count", max_instance_count)
|
|
669
|
+
if min_instance_count is not None:
|
|
670
|
+
pulumi.set(__self__, "min_instance_count", min_instance_count)
|
|
671
|
+
if time is not None:
|
|
672
|
+
pulumi.set(__self__, "time", time)
|
|
673
|
+
|
|
674
|
+
@property
|
|
675
|
+
@pulumi.getter(name="maxInstanceCount")
|
|
676
|
+
def max_instance_count(self) -> Optional[int]:
|
|
677
|
+
"""
|
|
678
|
+
The maximum instance count of the cluster
|
|
679
|
+
"""
|
|
680
|
+
return pulumi.get(self, "max_instance_count")
|
|
681
|
+
|
|
682
|
+
@property
|
|
683
|
+
@pulumi.getter(name="minInstanceCount")
|
|
684
|
+
def min_instance_count(self) -> Optional[int]:
|
|
685
|
+
"""
|
|
686
|
+
The minimum instance count of the cluster
|
|
687
|
+
"""
|
|
688
|
+
return pulumi.get(self, "min_instance_count")
|
|
689
|
+
|
|
690
|
+
@property
|
|
691
|
+
@pulumi.getter
|
|
692
|
+
def time(self) -> Optional[str]:
|
|
693
|
+
"""
|
|
694
|
+
24-hour time in the form xx:xx
|
|
695
|
+
"""
|
|
696
|
+
return pulumi.get(self, "time")
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
@pulumi.output_type
|
|
700
|
+
class ClientGroupInfoResponse(dict):
|
|
701
|
+
"""
|
|
702
|
+
The information of AAD security group.
|
|
703
|
+
"""
|
|
704
|
+
@staticmethod
|
|
705
|
+
def __key_warning(key: str):
|
|
706
|
+
suggest = None
|
|
707
|
+
if key == "groupId":
|
|
708
|
+
suggest = "group_id"
|
|
709
|
+
elif key == "groupName":
|
|
710
|
+
suggest = "group_name"
|
|
711
|
+
|
|
712
|
+
if suggest:
|
|
713
|
+
pulumi.log.warn(f"Key '{key}' not found in ClientGroupInfoResponse. Access the value via the '{suggest}' property getter instead.")
|
|
714
|
+
|
|
715
|
+
def __getitem__(self, key: str) -> Any:
|
|
716
|
+
ClientGroupInfoResponse.__key_warning(key)
|
|
717
|
+
return super().__getitem__(key)
|
|
718
|
+
|
|
719
|
+
def get(self, key: str, default = None) -> Any:
|
|
720
|
+
ClientGroupInfoResponse.__key_warning(key)
|
|
721
|
+
return super().get(key, default)
|
|
722
|
+
|
|
723
|
+
def __init__(__self__, *,
|
|
724
|
+
group_id: Optional[str] = None,
|
|
725
|
+
group_name: Optional[str] = None):
|
|
726
|
+
"""
|
|
727
|
+
The information of AAD security group.
|
|
728
|
+
:param str group_id: The AAD security group id.
|
|
729
|
+
:param str group_name: The AAD security group name.
|
|
730
|
+
"""
|
|
731
|
+
if group_id is not None:
|
|
732
|
+
pulumi.set(__self__, "group_id", group_id)
|
|
733
|
+
if group_name is not None:
|
|
734
|
+
pulumi.set(__self__, "group_name", group_name)
|
|
735
|
+
|
|
736
|
+
@property
|
|
737
|
+
@pulumi.getter(name="groupId")
|
|
738
|
+
def group_id(self) -> Optional[str]:
|
|
739
|
+
"""
|
|
740
|
+
The AAD security group id.
|
|
741
|
+
"""
|
|
742
|
+
return pulumi.get(self, "group_id")
|
|
743
|
+
|
|
744
|
+
@property
|
|
745
|
+
@pulumi.getter(name="groupName")
|
|
746
|
+
def group_name(self) -> Optional[str]:
|
|
747
|
+
"""
|
|
748
|
+
The AAD security group name.
|
|
749
|
+
"""
|
|
750
|
+
return pulumi.get(self, "group_name")
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
@pulumi.output_type
|
|
754
|
+
class ClusterDefinitionResponse(dict):
|
|
755
|
+
"""
|
|
756
|
+
The cluster definition.
|
|
757
|
+
"""
|
|
758
|
+
@staticmethod
|
|
759
|
+
def __key_warning(key: str):
|
|
760
|
+
suggest = None
|
|
761
|
+
if key == "componentVersion":
|
|
762
|
+
suggest = "component_version"
|
|
763
|
+
|
|
764
|
+
if suggest:
|
|
765
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterDefinitionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
766
|
+
|
|
767
|
+
def __getitem__(self, key: str) -> Any:
|
|
768
|
+
ClusterDefinitionResponse.__key_warning(key)
|
|
769
|
+
return super().__getitem__(key)
|
|
770
|
+
|
|
771
|
+
def get(self, key: str, default = None) -> Any:
|
|
772
|
+
ClusterDefinitionResponse.__key_warning(key)
|
|
773
|
+
return super().get(key, default)
|
|
774
|
+
|
|
775
|
+
def __init__(__self__, *,
|
|
776
|
+
blueprint: Optional[str] = None,
|
|
777
|
+
component_version: Optional[Mapping[str, str]] = None,
|
|
778
|
+
configurations: Optional[Any] = None,
|
|
779
|
+
kind: Optional[str] = None):
|
|
780
|
+
"""
|
|
781
|
+
The cluster definition.
|
|
782
|
+
:param str blueprint: The link to the blueprint.
|
|
783
|
+
:param Mapping[str, str] component_version: The versions of different services in the cluster.
|
|
784
|
+
:param Any configurations: The cluster configurations.
|
|
785
|
+
:param str kind: The type of cluster.
|
|
786
|
+
"""
|
|
787
|
+
if blueprint is not None:
|
|
788
|
+
pulumi.set(__self__, "blueprint", blueprint)
|
|
789
|
+
if component_version is not None:
|
|
790
|
+
pulumi.set(__self__, "component_version", component_version)
|
|
791
|
+
if configurations is not None:
|
|
792
|
+
pulumi.set(__self__, "configurations", configurations)
|
|
793
|
+
if kind is not None:
|
|
794
|
+
pulumi.set(__self__, "kind", kind)
|
|
795
|
+
|
|
796
|
+
@property
|
|
797
|
+
@pulumi.getter
|
|
798
|
+
def blueprint(self) -> Optional[str]:
|
|
799
|
+
"""
|
|
800
|
+
The link to the blueprint.
|
|
801
|
+
"""
|
|
802
|
+
return pulumi.get(self, "blueprint")
|
|
803
|
+
|
|
804
|
+
@property
|
|
805
|
+
@pulumi.getter(name="componentVersion")
|
|
806
|
+
def component_version(self) -> Optional[Mapping[str, str]]:
|
|
807
|
+
"""
|
|
808
|
+
The versions of different services in the cluster.
|
|
809
|
+
"""
|
|
810
|
+
return pulumi.get(self, "component_version")
|
|
811
|
+
|
|
812
|
+
@property
|
|
813
|
+
@pulumi.getter
|
|
814
|
+
def configurations(self) -> Optional[Any]:
|
|
815
|
+
"""
|
|
816
|
+
The cluster configurations.
|
|
817
|
+
"""
|
|
818
|
+
return pulumi.get(self, "configurations")
|
|
819
|
+
|
|
820
|
+
@property
|
|
821
|
+
@pulumi.getter
|
|
822
|
+
def kind(self) -> Optional[str]:
|
|
823
|
+
"""
|
|
824
|
+
The type of cluster.
|
|
825
|
+
"""
|
|
826
|
+
return pulumi.get(self, "kind")
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
@pulumi.output_type
|
|
830
|
+
class ClusterGetPropertiesResponse(dict):
|
|
831
|
+
"""
|
|
832
|
+
The properties of cluster.
|
|
833
|
+
"""
|
|
834
|
+
@staticmethod
|
|
835
|
+
def __key_warning(key: str):
|
|
836
|
+
suggest = None
|
|
837
|
+
if key == "clusterDefinition":
|
|
838
|
+
suggest = "cluster_definition"
|
|
839
|
+
elif key == "privateEndpointConnections":
|
|
840
|
+
suggest = "private_endpoint_connections"
|
|
841
|
+
elif key == "clusterHdpVersion":
|
|
842
|
+
suggest = "cluster_hdp_version"
|
|
843
|
+
elif key == "clusterId":
|
|
844
|
+
suggest = "cluster_id"
|
|
845
|
+
elif key == "clusterState":
|
|
846
|
+
suggest = "cluster_state"
|
|
847
|
+
elif key == "clusterVersion":
|
|
848
|
+
suggest = "cluster_version"
|
|
849
|
+
elif key == "computeIsolationProperties":
|
|
850
|
+
suggest = "compute_isolation_properties"
|
|
851
|
+
elif key == "computeProfile":
|
|
852
|
+
suggest = "compute_profile"
|
|
853
|
+
elif key == "connectivityEndpoints":
|
|
854
|
+
suggest = "connectivity_endpoints"
|
|
855
|
+
elif key == "createdDate":
|
|
856
|
+
suggest = "created_date"
|
|
857
|
+
elif key == "diskEncryptionProperties":
|
|
858
|
+
suggest = "disk_encryption_properties"
|
|
859
|
+
elif key == "encryptionInTransitProperties":
|
|
860
|
+
suggest = "encryption_in_transit_properties"
|
|
861
|
+
elif key == "excludedServicesConfig":
|
|
862
|
+
suggest = "excluded_services_config"
|
|
863
|
+
elif key == "kafkaRestProperties":
|
|
864
|
+
suggest = "kafka_rest_properties"
|
|
865
|
+
elif key == "minSupportedTlsVersion":
|
|
866
|
+
suggest = "min_supported_tls_version"
|
|
867
|
+
elif key == "networkProperties":
|
|
868
|
+
suggest = "network_properties"
|
|
869
|
+
elif key == "osType":
|
|
870
|
+
suggest = "os_type"
|
|
871
|
+
elif key == "privateLinkConfigurations":
|
|
872
|
+
suggest = "private_link_configurations"
|
|
873
|
+
elif key == "provisioningState":
|
|
874
|
+
suggest = "provisioning_state"
|
|
875
|
+
elif key == "quotaInfo":
|
|
876
|
+
suggest = "quota_info"
|
|
877
|
+
elif key == "securityProfile":
|
|
878
|
+
suggest = "security_profile"
|
|
879
|
+
elif key == "storageProfile":
|
|
880
|
+
suggest = "storage_profile"
|
|
881
|
+
|
|
882
|
+
if suggest:
|
|
883
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterGetPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
884
|
+
|
|
885
|
+
def __getitem__(self, key: str) -> Any:
|
|
886
|
+
ClusterGetPropertiesResponse.__key_warning(key)
|
|
887
|
+
return super().__getitem__(key)
|
|
888
|
+
|
|
889
|
+
def get(self, key: str, default = None) -> Any:
|
|
890
|
+
ClusterGetPropertiesResponse.__key_warning(key)
|
|
891
|
+
return super().get(key, default)
|
|
892
|
+
|
|
893
|
+
def __init__(__self__, *,
|
|
894
|
+
cluster_definition: 'outputs.ClusterDefinitionResponse',
|
|
895
|
+
private_endpoint_connections: Sequence['outputs.PrivateEndpointConnectionResponse'],
|
|
896
|
+
cluster_hdp_version: Optional[str] = None,
|
|
897
|
+
cluster_id: Optional[str] = None,
|
|
898
|
+
cluster_state: Optional[str] = None,
|
|
899
|
+
cluster_version: Optional[str] = None,
|
|
900
|
+
compute_isolation_properties: Optional['outputs.ComputeIsolationPropertiesResponse'] = None,
|
|
901
|
+
compute_profile: Optional['outputs.ComputeProfileResponse'] = None,
|
|
902
|
+
connectivity_endpoints: Optional[Sequence['outputs.ConnectivityEndpointResponse']] = None,
|
|
903
|
+
created_date: Optional[str] = None,
|
|
904
|
+
disk_encryption_properties: Optional['outputs.DiskEncryptionPropertiesResponse'] = None,
|
|
905
|
+
encryption_in_transit_properties: Optional['outputs.EncryptionInTransitPropertiesResponse'] = None,
|
|
906
|
+
errors: Optional[Sequence['outputs.ErrorsResponse']] = None,
|
|
907
|
+
excluded_services_config: Optional['outputs.ExcludedServicesConfigResponse'] = None,
|
|
908
|
+
kafka_rest_properties: Optional['outputs.KafkaRestPropertiesResponse'] = None,
|
|
909
|
+
min_supported_tls_version: Optional[str] = None,
|
|
910
|
+
network_properties: Optional['outputs.NetworkPropertiesResponse'] = None,
|
|
911
|
+
os_type: Optional[str] = None,
|
|
912
|
+
private_link_configurations: Optional[Sequence['outputs.PrivateLinkConfigurationResponse']] = None,
|
|
913
|
+
provisioning_state: Optional[str] = None,
|
|
914
|
+
quota_info: Optional['outputs.QuotaInfoResponse'] = None,
|
|
915
|
+
security_profile: Optional['outputs.SecurityProfileResponse'] = None,
|
|
916
|
+
storage_profile: Optional['outputs.StorageProfileResponse'] = None,
|
|
917
|
+
tier: Optional[str] = None):
|
|
918
|
+
"""
|
|
919
|
+
The properties of cluster.
|
|
920
|
+
:param 'ClusterDefinitionResponse' cluster_definition: The cluster definition.
|
|
921
|
+
:param Sequence['PrivateEndpointConnectionResponse'] private_endpoint_connections: The list of private endpoint connections.
|
|
922
|
+
:param str cluster_hdp_version: The hdp version of the cluster.
|
|
923
|
+
:param str cluster_id: The cluster id.
|
|
924
|
+
:param str cluster_state: The state of the cluster.
|
|
925
|
+
:param str cluster_version: The version of the cluster.
|
|
926
|
+
:param 'ComputeIsolationPropertiesResponse' compute_isolation_properties: The compute isolation properties.
|
|
927
|
+
:param 'ComputeProfileResponse' compute_profile: The compute profile.
|
|
928
|
+
:param Sequence['ConnectivityEndpointResponse'] connectivity_endpoints: The list of connectivity endpoints.
|
|
929
|
+
:param str created_date: The date on which the cluster was created.
|
|
930
|
+
:param 'DiskEncryptionPropertiesResponse' disk_encryption_properties: The disk encryption properties.
|
|
931
|
+
:param 'EncryptionInTransitPropertiesResponse' encryption_in_transit_properties: The encryption-in-transit properties.
|
|
932
|
+
:param Sequence['ErrorsResponse'] errors: The list of errors.
|
|
933
|
+
:param 'ExcludedServicesConfigResponse' excluded_services_config: The excluded services config.
|
|
934
|
+
:param 'KafkaRestPropertiesResponse' kafka_rest_properties: The cluster kafka rest proxy configuration.
|
|
935
|
+
:param str min_supported_tls_version: The minimal supported tls version.
|
|
936
|
+
:param 'NetworkPropertiesResponse' network_properties: The network properties.
|
|
937
|
+
:param str os_type: The type of operating system.
|
|
938
|
+
:param Sequence['PrivateLinkConfigurationResponse'] private_link_configurations: The private link configurations.
|
|
939
|
+
:param str provisioning_state: The provisioning state, which only appears in the response.
|
|
940
|
+
:param 'QuotaInfoResponse' quota_info: The quota information.
|
|
941
|
+
:param 'SecurityProfileResponse' security_profile: The security profile.
|
|
942
|
+
:param 'StorageProfileResponse' storage_profile: The storage profile.
|
|
943
|
+
:param str tier: The cluster tier.
|
|
944
|
+
"""
|
|
945
|
+
pulumi.set(__self__, "cluster_definition", cluster_definition)
|
|
946
|
+
pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
|
|
947
|
+
if cluster_hdp_version is not None:
|
|
948
|
+
pulumi.set(__self__, "cluster_hdp_version", cluster_hdp_version)
|
|
949
|
+
if cluster_id is not None:
|
|
950
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
|
951
|
+
if cluster_state is not None:
|
|
952
|
+
pulumi.set(__self__, "cluster_state", cluster_state)
|
|
953
|
+
if cluster_version is not None:
|
|
954
|
+
pulumi.set(__self__, "cluster_version", cluster_version)
|
|
955
|
+
if compute_isolation_properties is not None:
|
|
956
|
+
pulumi.set(__self__, "compute_isolation_properties", compute_isolation_properties)
|
|
957
|
+
if compute_profile is not None:
|
|
958
|
+
pulumi.set(__self__, "compute_profile", compute_profile)
|
|
959
|
+
if connectivity_endpoints is not None:
|
|
960
|
+
pulumi.set(__self__, "connectivity_endpoints", connectivity_endpoints)
|
|
961
|
+
if created_date is not None:
|
|
962
|
+
pulumi.set(__self__, "created_date", created_date)
|
|
963
|
+
if disk_encryption_properties is not None:
|
|
964
|
+
pulumi.set(__self__, "disk_encryption_properties", disk_encryption_properties)
|
|
965
|
+
if encryption_in_transit_properties is not None:
|
|
966
|
+
pulumi.set(__self__, "encryption_in_transit_properties", encryption_in_transit_properties)
|
|
967
|
+
if errors is not None:
|
|
968
|
+
pulumi.set(__self__, "errors", errors)
|
|
969
|
+
if excluded_services_config is not None:
|
|
970
|
+
pulumi.set(__self__, "excluded_services_config", excluded_services_config)
|
|
971
|
+
if kafka_rest_properties is not None:
|
|
972
|
+
pulumi.set(__self__, "kafka_rest_properties", kafka_rest_properties)
|
|
973
|
+
if min_supported_tls_version is not None:
|
|
974
|
+
pulumi.set(__self__, "min_supported_tls_version", min_supported_tls_version)
|
|
975
|
+
if network_properties is not None:
|
|
976
|
+
pulumi.set(__self__, "network_properties", network_properties)
|
|
977
|
+
if os_type is not None:
|
|
978
|
+
pulumi.set(__self__, "os_type", os_type)
|
|
979
|
+
if private_link_configurations is not None:
|
|
980
|
+
pulumi.set(__self__, "private_link_configurations", private_link_configurations)
|
|
981
|
+
if provisioning_state is not None:
|
|
982
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
983
|
+
if quota_info is not None:
|
|
984
|
+
pulumi.set(__self__, "quota_info", quota_info)
|
|
985
|
+
if security_profile is not None:
|
|
986
|
+
pulumi.set(__self__, "security_profile", security_profile)
|
|
987
|
+
if storage_profile is not None:
|
|
988
|
+
pulumi.set(__self__, "storage_profile", storage_profile)
|
|
989
|
+
if tier is not None:
|
|
990
|
+
pulumi.set(__self__, "tier", tier)
|
|
991
|
+
|
|
992
|
+
@property
|
|
993
|
+
@pulumi.getter(name="clusterDefinition")
|
|
994
|
+
def cluster_definition(self) -> 'outputs.ClusterDefinitionResponse':
|
|
995
|
+
"""
|
|
996
|
+
The cluster definition.
|
|
997
|
+
"""
|
|
998
|
+
return pulumi.get(self, "cluster_definition")
|
|
999
|
+
|
|
1000
|
+
@property
|
|
1001
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
1002
|
+
def private_endpoint_connections(self) -> Sequence['outputs.PrivateEndpointConnectionResponse']:
|
|
1003
|
+
"""
|
|
1004
|
+
The list of private endpoint connections.
|
|
1005
|
+
"""
|
|
1006
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
1007
|
+
|
|
1008
|
+
@property
|
|
1009
|
+
@pulumi.getter(name="clusterHdpVersion")
|
|
1010
|
+
def cluster_hdp_version(self) -> Optional[str]:
|
|
1011
|
+
"""
|
|
1012
|
+
The hdp version of the cluster.
|
|
1013
|
+
"""
|
|
1014
|
+
return pulumi.get(self, "cluster_hdp_version")
|
|
1015
|
+
|
|
1016
|
+
@property
|
|
1017
|
+
@pulumi.getter(name="clusterId")
|
|
1018
|
+
def cluster_id(self) -> Optional[str]:
|
|
1019
|
+
"""
|
|
1020
|
+
The cluster id.
|
|
1021
|
+
"""
|
|
1022
|
+
return pulumi.get(self, "cluster_id")
|
|
1023
|
+
|
|
1024
|
+
@property
|
|
1025
|
+
@pulumi.getter(name="clusterState")
|
|
1026
|
+
def cluster_state(self) -> Optional[str]:
|
|
1027
|
+
"""
|
|
1028
|
+
The state of the cluster.
|
|
1029
|
+
"""
|
|
1030
|
+
return pulumi.get(self, "cluster_state")
|
|
1031
|
+
|
|
1032
|
+
@property
|
|
1033
|
+
@pulumi.getter(name="clusterVersion")
|
|
1034
|
+
def cluster_version(self) -> Optional[str]:
|
|
1035
|
+
"""
|
|
1036
|
+
The version of the cluster.
|
|
1037
|
+
"""
|
|
1038
|
+
return pulumi.get(self, "cluster_version")
|
|
1039
|
+
|
|
1040
|
+
@property
|
|
1041
|
+
@pulumi.getter(name="computeIsolationProperties")
|
|
1042
|
+
def compute_isolation_properties(self) -> Optional['outputs.ComputeIsolationPropertiesResponse']:
|
|
1043
|
+
"""
|
|
1044
|
+
The compute isolation properties.
|
|
1045
|
+
"""
|
|
1046
|
+
return pulumi.get(self, "compute_isolation_properties")
|
|
1047
|
+
|
|
1048
|
+
@property
|
|
1049
|
+
@pulumi.getter(name="computeProfile")
|
|
1050
|
+
def compute_profile(self) -> Optional['outputs.ComputeProfileResponse']:
|
|
1051
|
+
"""
|
|
1052
|
+
The compute profile.
|
|
1053
|
+
"""
|
|
1054
|
+
return pulumi.get(self, "compute_profile")
|
|
1055
|
+
|
|
1056
|
+
@property
|
|
1057
|
+
@pulumi.getter(name="connectivityEndpoints")
|
|
1058
|
+
def connectivity_endpoints(self) -> Optional[Sequence['outputs.ConnectivityEndpointResponse']]:
|
|
1059
|
+
"""
|
|
1060
|
+
The list of connectivity endpoints.
|
|
1061
|
+
"""
|
|
1062
|
+
return pulumi.get(self, "connectivity_endpoints")
|
|
1063
|
+
|
|
1064
|
+
@property
|
|
1065
|
+
@pulumi.getter(name="createdDate")
|
|
1066
|
+
def created_date(self) -> Optional[str]:
|
|
1067
|
+
"""
|
|
1068
|
+
The date on which the cluster was created.
|
|
1069
|
+
"""
|
|
1070
|
+
return pulumi.get(self, "created_date")
|
|
1071
|
+
|
|
1072
|
+
@property
|
|
1073
|
+
@pulumi.getter(name="diskEncryptionProperties")
|
|
1074
|
+
def disk_encryption_properties(self) -> Optional['outputs.DiskEncryptionPropertiesResponse']:
|
|
1075
|
+
"""
|
|
1076
|
+
The disk encryption properties.
|
|
1077
|
+
"""
|
|
1078
|
+
return pulumi.get(self, "disk_encryption_properties")
|
|
1079
|
+
|
|
1080
|
+
@property
|
|
1081
|
+
@pulumi.getter(name="encryptionInTransitProperties")
|
|
1082
|
+
def encryption_in_transit_properties(self) -> Optional['outputs.EncryptionInTransitPropertiesResponse']:
|
|
1083
|
+
"""
|
|
1084
|
+
The encryption-in-transit properties.
|
|
1085
|
+
"""
|
|
1086
|
+
return pulumi.get(self, "encryption_in_transit_properties")
|
|
1087
|
+
|
|
1088
|
+
@property
|
|
1089
|
+
@pulumi.getter
|
|
1090
|
+
def errors(self) -> Optional[Sequence['outputs.ErrorsResponse']]:
|
|
1091
|
+
"""
|
|
1092
|
+
The list of errors.
|
|
1093
|
+
"""
|
|
1094
|
+
return pulumi.get(self, "errors")
|
|
1095
|
+
|
|
1096
|
+
@property
|
|
1097
|
+
@pulumi.getter(name="excludedServicesConfig")
|
|
1098
|
+
def excluded_services_config(self) -> Optional['outputs.ExcludedServicesConfigResponse']:
|
|
1099
|
+
"""
|
|
1100
|
+
The excluded services config.
|
|
1101
|
+
"""
|
|
1102
|
+
return pulumi.get(self, "excluded_services_config")
|
|
1103
|
+
|
|
1104
|
+
@property
|
|
1105
|
+
@pulumi.getter(name="kafkaRestProperties")
|
|
1106
|
+
def kafka_rest_properties(self) -> Optional['outputs.KafkaRestPropertiesResponse']:
|
|
1107
|
+
"""
|
|
1108
|
+
The cluster kafka rest proxy configuration.
|
|
1109
|
+
"""
|
|
1110
|
+
return pulumi.get(self, "kafka_rest_properties")
|
|
1111
|
+
|
|
1112
|
+
@property
|
|
1113
|
+
@pulumi.getter(name="minSupportedTlsVersion")
|
|
1114
|
+
def min_supported_tls_version(self) -> Optional[str]:
|
|
1115
|
+
"""
|
|
1116
|
+
The minimal supported tls version.
|
|
1117
|
+
"""
|
|
1118
|
+
return pulumi.get(self, "min_supported_tls_version")
|
|
1119
|
+
|
|
1120
|
+
@property
|
|
1121
|
+
@pulumi.getter(name="networkProperties")
|
|
1122
|
+
def network_properties(self) -> Optional['outputs.NetworkPropertiesResponse']:
|
|
1123
|
+
"""
|
|
1124
|
+
The network properties.
|
|
1125
|
+
"""
|
|
1126
|
+
return pulumi.get(self, "network_properties")
|
|
1127
|
+
|
|
1128
|
+
@property
|
|
1129
|
+
@pulumi.getter(name="osType")
|
|
1130
|
+
def os_type(self) -> Optional[str]:
|
|
1131
|
+
"""
|
|
1132
|
+
The type of operating system.
|
|
1133
|
+
"""
|
|
1134
|
+
return pulumi.get(self, "os_type")
|
|
1135
|
+
|
|
1136
|
+
@property
|
|
1137
|
+
@pulumi.getter(name="privateLinkConfigurations")
|
|
1138
|
+
def private_link_configurations(self) -> Optional[Sequence['outputs.PrivateLinkConfigurationResponse']]:
|
|
1139
|
+
"""
|
|
1140
|
+
The private link configurations.
|
|
1141
|
+
"""
|
|
1142
|
+
return pulumi.get(self, "private_link_configurations")
|
|
1143
|
+
|
|
1144
|
+
@property
|
|
1145
|
+
@pulumi.getter(name="provisioningState")
|
|
1146
|
+
def provisioning_state(self) -> Optional[str]:
|
|
1147
|
+
"""
|
|
1148
|
+
The provisioning state, which only appears in the response.
|
|
1149
|
+
"""
|
|
1150
|
+
return pulumi.get(self, "provisioning_state")
|
|
1151
|
+
|
|
1152
|
+
@property
|
|
1153
|
+
@pulumi.getter(name="quotaInfo")
|
|
1154
|
+
def quota_info(self) -> Optional['outputs.QuotaInfoResponse']:
|
|
1155
|
+
"""
|
|
1156
|
+
The quota information.
|
|
1157
|
+
"""
|
|
1158
|
+
return pulumi.get(self, "quota_info")
|
|
1159
|
+
|
|
1160
|
+
@property
|
|
1161
|
+
@pulumi.getter(name="securityProfile")
|
|
1162
|
+
def security_profile(self) -> Optional['outputs.SecurityProfileResponse']:
|
|
1163
|
+
"""
|
|
1164
|
+
The security profile.
|
|
1165
|
+
"""
|
|
1166
|
+
return pulumi.get(self, "security_profile")
|
|
1167
|
+
|
|
1168
|
+
@property
|
|
1169
|
+
@pulumi.getter(name="storageProfile")
|
|
1170
|
+
def storage_profile(self) -> Optional['outputs.StorageProfileResponse']:
|
|
1171
|
+
"""
|
|
1172
|
+
The storage profile.
|
|
1173
|
+
"""
|
|
1174
|
+
return pulumi.get(self, "storage_profile")
|
|
1175
|
+
|
|
1176
|
+
@property
|
|
1177
|
+
@pulumi.getter
|
|
1178
|
+
def tier(self) -> Optional[str]:
|
|
1179
|
+
"""
|
|
1180
|
+
The cluster tier.
|
|
1181
|
+
"""
|
|
1182
|
+
return pulumi.get(self, "tier")
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
@pulumi.output_type
|
|
1186
|
+
class ClusterIdentityResponse(dict):
|
|
1187
|
+
"""
|
|
1188
|
+
Identity for the cluster.
|
|
1189
|
+
"""
|
|
1190
|
+
@staticmethod
|
|
1191
|
+
def __key_warning(key: str):
|
|
1192
|
+
suggest = None
|
|
1193
|
+
if key == "principalId":
|
|
1194
|
+
suggest = "principal_id"
|
|
1195
|
+
elif key == "tenantId":
|
|
1196
|
+
suggest = "tenant_id"
|
|
1197
|
+
elif key == "userAssignedIdentities":
|
|
1198
|
+
suggest = "user_assigned_identities"
|
|
1199
|
+
|
|
1200
|
+
if suggest:
|
|
1201
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1202
|
+
|
|
1203
|
+
def __getitem__(self, key: str) -> Any:
|
|
1204
|
+
ClusterIdentityResponse.__key_warning(key)
|
|
1205
|
+
return super().__getitem__(key)
|
|
1206
|
+
|
|
1207
|
+
def get(self, key: str, default = None) -> Any:
|
|
1208
|
+
ClusterIdentityResponse.__key_warning(key)
|
|
1209
|
+
return super().get(key, default)
|
|
1210
|
+
|
|
1211
|
+
def __init__(__self__, *,
|
|
1212
|
+
principal_id: str,
|
|
1213
|
+
tenant_id: str,
|
|
1214
|
+
type: Optional[str] = None,
|
|
1215
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
|
|
1216
|
+
"""
|
|
1217
|
+
Identity for the cluster.
|
|
1218
|
+
:param str principal_id: The principal id of cluster identity. This property will only be provided for a system assigned identity.
|
|
1219
|
+
:param str tenant_id: The tenant id associated with the cluster. This property will only be provided for a system assigned identity.
|
|
1220
|
+
:param str type: The type of identity used for the cluster. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities.
|
|
1221
|
+
:param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The list of user identities associated with the cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
1222
|
+
"""
|
|
1223
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
1224
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
1225
|
+
if type is not None:
|
|
1226
|
+
pulumi.set(__self__, "type", type)
|
|
1227
|
+
if user_assigned_identities is not None:
|
|
1228
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
1229
|
+
|
|
1230
|
+
@property
|
|
1231
|
+
@pulumi.getter(name="principalId")
|
|
1232
|
+
def principal_id(self) -> str:
|
|
1233
|
+
"""
|
|
1234
|
+
The principal id of cluster identity. This property will only be provided for a system assigned identity.
|
|
1235
|
+
"""
|
|
1236
|
+
return pulumi.get(self, "principal_id")
|
|
1237
|
+
|
|
1238
|
+
@property
|
|
1239
|
+
@pulumi.getter(name="tenantId")
|
|
1240
|
+
def tenant_id(self) -> str:
|
|
1241
|
+
"""
|
|
1242
|
+
The tenant id associated with the cluster. This property will only be provided for a system assigned identity.
|
|
1243
|
+
"""
|
|
1244
|
+
return pulumi.get(self, "tenant_id")
|
|
1245
|
+
|
|
1246
|
+
@property
|
|
1247
|
+
@pulumi.getter
|
|
1248
|
+
def type(self) -> Optional[str]:
|
|
1249
|
+
"""
|
|
1250
|
+
The type of identity used for the cluster. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities.
|
|
1251
|
+
"""
|
|
1252
|
+
return pulumi.get(self, "type")
|
|
1253
|
+
|
|
1254
|
+
@property
|
|
1255
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
1256
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
|
|
1257
|
+
"""
|
|
1258
|
+
The list of user identities associated with the cluster. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
1259
|
+
"""
|
|
1260
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
@pulumi.output_type
|
|
1264
|
+
class ComputeIsolationPropertiesResponse(dict):
|
|
1265
|
+
"""
|
|
1266
|
+
The compute isolation properties.
|
|
1267
|
+
"""
|
|
1268
|
+
@staticmethod
|
|
1269
|
+
def __key_warning(key: str):
|
|
1270
|
+
suggest = None
|
|
1271
|
+
if key == "enableComputeIsolation":
|
|
1272
|
+
suggest = "enable_compute_isolation"
|
|
1273
|
+
elif key == "hostSku":
|
|
1274
|
+
suggest = "host_sku"
|
|
1275
|
+
|
|
1276
|
+
if suggest:
|
|
1277
|
+
pulumi.log.warn(f"Key '{key}' not found in ComputeIsolationPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1278
|
+
|
|
1279
|
+
def __getitem__(self, key: str) -> Any:
|
|
1280
|
+
ComputeIsolationPropertiesResponse.__key_warning(key)
|
|
1281
|
+
return super().__getitem__(key)
|
|
1282
|
+
|
|
1283
|
+
def get(self, key: str, default = None) -> Any:
|
|
1284
|
+
ComputeIsolationPropertiesResponse.__key_warning(key)
|
|
1285
|
+
return super().get(key, default)
|
|
1286
|
+
|
|
1287
|
+
def __init__(__self__, *,
|
|
1288
|
+
enable_compute_isolation: Optional[bool] = None,
|
|
1289
|
+
host_sku: Optional[str] = None):
|
|
1290
|
+
"""
|
|
1291
|
+
The compute isolation properties.
|
|
1292
|
+
:param bool enable_compute_isolation: The flag indicates whether enable compute isolation or not.
|
|
1293
|
+
:param str host_sku: The host sku.
|
|
1294
|
+
"""
|
|
1295
|
+
if enable_compute_isolation is None:
|
|
1296
|
+
enable_compute_isolation = False
|
|
1297
|
+
if enable_compute_isolation is not None:
|
|
1298
|
+
pulumi.set(__self__, "enable_compute_isolation", enable_compute_isolation)
|
|
1299
|
+
if host_sku is not None:
|
|
1300
|
+
pulumi.set(__self__, "host_sku", host_sku)
|
|
1301
|
+
|
|
1302
|
+
@property
|
|
1303
|
+
@pulumi.getter(name="enableComputeIsolation")
|
|
1304
|
+
def enable_compute_isolation(self) -> Optional[bool]:
|
|
1305
|
+
"""
|
|
1306
|
+
The flag indicates whether enable compute isolation or not.
|
|
1307
|
+
"""
|
|
1308
|
+
return pulumi.get(self, "enable_compute_isolation")
|
|
1309
|
+
|
|
1310
|
+
@property
|
|
1311
|
+
@pulumi.getter(name="hostSku")
|
|
1312
|
+
def host_sku(self) -> Optional[str]:
|
|
1313
|
+
"""
|
|
1314
|
+
The host sku.
|
|
1315
|
+
"""
|
|
1316
|
+
return pulumi.get(self, "host_sku")
|
|
1317
|
+
|
|
1318
|
+
|
|
1319
|
+
@pulumi.output_type
|
|
1320
|
+
class ComputeProfileResponse(dict):
|
|
1321
|
+
"""
|
|
1322
|
+
Describes the compute profile.
|
|
1323
|
+
"""
|
|
1324
|
+
def __init__(__self__, *,
|
|
1325
|
+
roles: Optional[Sequence['outputs.RoleResponse']] = None):
|
|
1326
|
+
"""
|
|
1327
|
+
Describes the compute profile.
|
|
1328
|
+
:param Sequence['RoleResponse'] roles: The list of roles in the cluster.
|
|
1329
|
+
"""
|
|
1330
|
+
if roles is not None:
|
|
1331
|
+
pulumi.set(__self__, "roles", roles)
|
|
1332
|
+
|
|
1333
|
+
@property
|
|
1334
|
+
@pulumi.getter
|
|
1335
|
+
def roles(self) -> Optional[Sequence['outputs.RoleResponse']]:
|
|
1336
|
+
"""
|
|
1337
|
+
The list of roles in the cluster.
|
|
1338
|
+
"""
|
|
1339
|
+
return pulumi.get(self, "roles")
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
@pulumi.output_type
|
|
1343
|
+
class ConnectivityEndpointResponse(dict):
|
|
1344
|
+
"""
|
|
1345
|
+
The connectivity properties
|
|
1346
|
+
"""
|
|
1347
|
+
@staticmethod
|
|
1348
|
+
def __key_warning(key: str):
|
|
1349
|
+
suggest = None
|
|
1350
|
+
if key == "privateIPAddress":
|
|
1351
|
+
suggest = "private_ip_address"
|
|
1352
|
+
|
|
1353
|
+
if suggest:
|
|
1354
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectivityEndpointResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1355
|
+
|
|
1356
|
+
def __getitem__(self, key: str) -> Any:
|
|
1357
|
+
ConnectivityEndpointResponse.__key_warning(key)
|
|
1358
|
+
return super().__getitem__(key)
|
|
1359
|
+
|
|
1360
|
+
def get(self, key: str, default = None) -> Any:
|
|
1361
|
+
ConnectivityEndpointResponse.__key_warning(key)
|
|
1362
|
+
return super().get(key, default)
|
|
1363
|
+
|
|
1364
|
+
def __init__(__self__, *,
|
|
1365
|
+
location: Optional[str] = None,
|
|
1366
|
+
name: Optional[str] = None,
|
|
1367
|
+
port: Optional[int] = None,
|
|
1368
|
+
private_ip_address: Optional[str] = None,
|
|
1369
|
+
protocol: Optional[str] = None):
|
|
1370
|
+
"""
|
|
1371
|
+
The connectivity properties
|
|
1372
|
+
:param str location: The location of the endpoint.
|
|
1373
|
+
:param str name: The name of the endpoint.
|
|
1374
|
+
:param int port: The port to connect to.
|
|
1375
|
+
:param str private_ip_address: The private ip address of the endpoint.
|
|
1376
|
+
:param str protocol: The protocol of the endpoint.
|
|
1377
|
+
"""
|
|
1378
|
+
if location is not None:
|
|
1379
|
+
pulumi.set(__self__, "location", location)
|
|
1380
|
+
if name is not None:
|
|
1381
|
+
pulumi.set(__self__, "name", name)
|
|
1382
|
+
if port is not None:
|
|
1383
|
+
pulumi.set(__self__, "port", port)
|
|
1384
|
+
if private_ip_address is not None:
|
|
1385
|
+
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
|
1386
|
+
if protocol is not None:
|
|
1387
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
1388
|
+
|
|
1389
|
+
@property
|
|
1390
|
+
@pulumi.getter
|
|
1391
|
+
def location(self) -> Optional[str]:
|
|
1392
|
+
"""
|
|
1393
|
+
The location of the endpoint.
|
|
1394
|
+
"""
|
|
1395
|
+
return pulumi.get(self, "location")
|
|
1396
|
+
|
|
1397
|
+
@property
|
|
1398
|
+
@pulumi.getter
|
|
1399
|
+
def name(self) -> Optional[str]:
|
|
1400
|
+
"""
|
|
1401
|
+
The name of the endpoint.
|
|
1402
|
+
"""
|
|
1403
|
+
return pulumi.get(self, "name")
|
|
1404
|
+
|
|
1405
|
+
@property
|
|
1406
|
+
@pulumi.getter
|
|
1407
|
+
def port(self) -> Optional[int]:
|
|
1408
|
+
"""
|
|
1409
|
+
The port to connect to.
|
|
1410
|
+
"""
|
|
1411
|
+
return pulumi.get(self, "port")
|
|
1412
|
+
|
|
1413
|
+
@property
|
|
1414
|
+
@pulumi.getter(name="privateIPAddress")
|
|
1415
|
+
def private_ip_address(self) -> Optional[str]:
|
|
1416
|
+
"""
|
|
1417
|
+
The private ip address of the endpoint.
|
|
1418
|
+
"""
|
|
1419
|
+
return pulumi.get(self, "private_ip_address")
|
|
1420
|
+
|
|
1421
|
+
@property
|
|
1422
|
+
@pulumi.getter
|
|
1423
|
+
def protocol(self) -> Optional[str]:
|
|
1424
|
+
"""
|
|
1425
|
+
The protocol of the endpoint.
|
|
1426
|
+
"""
|
|
1427
|
+
return pulumi.get(self, "protocol")
|
|
1428
|
+
|
|
1429
|
+
|
|
1430
|
+
@pulumi.output_type
|
|
1431
|
+
class DataDisksGroupsResponse(dict):
|
|
1432
|
+
"""
|
|
1433
|
+
The data disks groups for the role.
|
|
1434
|
+
"""
|
|
1435
|
+
@staticmethod
|
|
1436
|
+
def __key_warning(key: str):
|
|
1437
|
+
suggest = None
|
|
1438
|
+
if key == "diskSizeGB":
|
|
1439
|
+
suggest = "disk_size_gb"
|
|
1440
|
+
elif key == "storageAccountType":
|
|
1441
|
+
suggest = "storage_account_type"
|
|
1442
|
+
elif key == "disksPerNode":
|
|
1443
|
+
suggest = "disks_per_node"
|
|
1444
|
+
|
|
1445
|
+
if suggest:
|
|
1446
|
+
pulumi.log.warn(f"Key '{key}' not found in DataDisksGroupsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1447
|
+
|
|
1448
|
+
def __getitem__(self, key: str) -> Any:
|
|
1449
|
+
DataDisksGroupsResponse.__key_warning(key)
|
|
1450
|
+
return super().__getitem__(key)
|
|
1451
|
+
|
|
1452
|
+
def get(self, key: str, default = None) -> Any:
|
|
1453
|
+
DataDisksGroupsResponse.__key_warning(key)
|
|
1454
|
+
return super().get(key, default)
|
|
1455
|
+
|
|
1456
|
+
def __init__(__self__, *,
|
|
1457
|
+
disk_size_gb: int,
|
|
1458
|
+
storage_account_type: str,
|
|
1459
|
+
disks_per_node: Optional[int] = None):
|
|
1460
|
+
"""
|
|
1461
|
+
The data disks groups for the role.
|
|
1462
|
+
:param int disk_size_gb: ReadOnly. The DiskSize in GB. Do not set this value.
|
|
1463
|
+
:param str storage_account_type: ReadOnly. The storage account type. Do not set this value.
|
|
1464
|
+
:param int disks_per_node: The number of disks per node.
|
|
1465
|
+
"""
|
|
1466
|
+
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
|
1467
|
+
pulumi.set(__self__, "storage_account_type", storage_account_type)
|
|
1468
|
+
if disks_per_node is not None:
|
|
1469
|
+
pulumi.set(__self__, "disks_per_node", disks_per_node)
|
|
1470
|
+
|
|
1471
|
+
@property
|
|
1472
|
+
@pulumi.getter(name="diskSizeGB")
|
|
1473
|
+
def disk_size_gb(self) -> int:
|
|
1474
|
+
"""
|
|
1475
|
+
ReadOnly. The DiskSize in GB. Do not set this value.
|
|
1476
|
+
"""
|
|
1477
|
+
return pulumi.get(self, "disk_size_gb")
|
|
1478
|
+
|
|
1479
|
+
@property
|
|
1480
|
+
@pulumi.getter(name="storageAccountType")
|
|
1481
|
+
def storage_account_type(self) -> str:
|
|
1482
|
+
"""
|
|
1483
|
+
ReadOnly. The storage account type. Do not set this value.
|
|
1484
|
+
"""
|
|
1485
|
+
return pulumi.get(self, "storage_account_type")
|
|
1486
|
+
|
|
1487
|
+
@property
|
|
1488
|
+
@pulumi.getter(name="disksPerNode")
|
|
1489
|
+
def disks_per_node(self) -> Optional[int]:
|
|
1490
|
+
"""
|
|
1491
|
+
The number of disks per node.
|
|
1492
|
+
"""
|
|
1493
|
+
return pulumi.get(self, "disks_per_node")
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
@pulumi.output_type
|
|
1497
|
+
class DiskEncryptionPropertiesResponse(dict):
|
|
1498
|
+
"""
|
|
1499
|
+
The disk encryption properties
|
|
1500
|
+
"""
|
|
1501
|
+
@staticmethod
|
|
1502
|
+
def __key_warning(key: str):
|
|
1503
|
+
suggest = None
|
|
1504
|
+
if key == "encryptionAlgorithm":
|
|
1505
|
+
suggest = "encryption_algorithm"
|
|
1506
|
+
elif key == "encryptionAtHost":
|
|
1507
|
+
suggest = "encryption_at_host"
|
|
1508
|
+
elif key == "keyName":
|
|
1509
|
+
suggest = "key_name"
|
|
1510
|
+
elif key == "keyVersion":
|
|
1511
|
+
suggest = "key_version"
|
|
1512
|
+
elif key == "msiResourceId":
|
|
1513
|
+
suggest = "msi_resource_id"
|
|
1514
|
+
elif key == "vaultUri":
|
|
1515
|
+
suggest = "vault_uri"
|
|
1516
|
+
|
|
1517
|
+
if suggest:
|
|
1518
|
+
pulumi.log.warn(f"Key '{key}' not found in DiskEncryptionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1519
|
+
|
|
1520
|
+
def __getitem__(self, key: str) -> Any:
|
|
1521
|
+
DiskEncryptionPropertiesResponse.__key_warning(key)
|
|
1522
|
+
return super().__getitem__(key)
|
|
1523
|
+
|
|
1524
|
+
def get(self, key: str, default = None) -> Any:
|
|
1525
|
+
DiskEncryptionPropertiesResponse.__key_warning(key)
|
|
1526
|
+
return super().get(key, default)
|
|
1527
|
+
|
|
1528
|
+
def __init__(__self__, *,
|
|
1529
|
+
encryption_algorithm: Optional[str] = None,
|
|
1530
|
+
encryption_at_host: Optional[bool] = None,
|
|
1531
|
+
key_name: Optional[str] = None,
|
|
1532
|
+
key_version: Optional[str] = None,
|
|
1533
|
+
msi_resource_id: Optional[str] = None,
|
|
1534
|
+
vault_uri: Optional[str] = None):
|
|
1535
|
+
"""
|
|
1536
|
+
The disk encryption properties
|
|
1537
|
+
:param str encryption_algorithm: Algorithm identifier for encryption, default RSA-OAEP.
|
|
1538
|
+
:param bool encryption_at_host: Indicates whether or not resource disk encryption is enabled.
|
|
1539
|
+
:param str key_name: Key name that is used for enabling disk encryption.
|
|
1540
|
+
:param str key_version: Specific key version that is used for enabling disk encryption.
|
|
1541
|
+
:param str msi_resource_id: Resource ID of Managed Identity that is used to access the key vault.
|
|
1542
|
+
:param str vault_uri: Base key vault URI where the customers key is located eg. https://myvault.vault.azure.net
|
|
1543
|
+
"""
|
|
1544
|
+
if encryption_algorithm is not None:
|
|
1545
|
+
pulumi.set(__self__, "encryption_algorithm", encryption_algorithm)
|
|
1546
|
+
if encryption_at_host is None:
|
|
1547
|
+
encryption_at_host = False
|
|
1548
|
+
if encryption_at_host is not None:
|
|
1549
|
+
pulumi.set(__self__, "encryption_at_host", encryption_at_host)
|
|
1550
|
+
if key_name is not None:
|
|
1551
|
+
pulumi.set(__self__, "key_name", key_name)
|
|
1552
|
+
if key_version is not None:
|
|
1553
|
+
pulumi.set(__self__, "key_version", key_version)
|
|
1554
|
+
if msi_resource_id is not None:
|
|
1555
|
+
pulumi.set(__self__, "msi_resource_id", msi_resource_id)
|
|
1556
|
+
if vault_uri is not None:
|
|
1557
|
+
pulumi.set(__self__, "vault_uri", vault_uri)
|
|
1558
|
+
|
|
1559
|
+
@property
|
|
1560
|
+
@pulumi.getter(name="encryptionAlgorithm")
|
|
1561
|
+
def encryption_algorithm(self) -> Optional[str]:
|
|
1562
|
+
"""
|
|
1563
|
+
Algorithm identifier for encryption, default RSA-OAEP.
|
|
1564
|
+
"""
|
|
1565
|
+
return pulumi.get(self, "encryption_algorithm")
|
|
1566
|
+
|
|
1567
|
+
@property
|
|
1568
|
+
@pulumi.getter(name="encryptionAtHost")
|
|
1569
|
+
def encryption_at_host(self) -> Optional[bool]:
|
|
1570
|
+
"""
|
|
1571
|
+
Indicates whether or not resource disk encryption is enabled.
|
|
1572
|
+
"""
|
|
1573
|
+
return pulumi.get(self, "encryption_at_host")
|
|
1574
|
+
|
|
1575
|
+
@property
|
|
1576
|
+
@pulumi.getter(name="keyName")
|
|
1577
|
+
def key_name(self) -> Optional[str]:
|
|
1578
|
+
"""
|
|
1579
|
+
Key name that is used for enabling disk encryption.
|
|
1580
|
+
"""
|
|
1581
|
+
return pulumi.get(self, "key_name")
|
|
1582
|
+
|
|
1583
|
+
@property
|
|
1584
|
+
@pulumi.getter(name="keyVersion")
|
|
1585
|
+
def key_version(self) -> Optional[str]:
|
|
1586
|
+
"""
|
|
1587
|
+
Specific key version that is used for enabling disk encryption.
|
|
1588
|
+
"""
|
|
1589
|
+
return pulumi.get(self, "key_version")
|
|
1590
|
+
|
|
1591
|
+
@property
|
|
1592
|
+
@pulumi.getter(name="msiResourceId")
|
|
1593
|
+
def msi_resource_id(self) -> Optional[str]:
|
|
1594
|
+
"""
|
|
1595
|
+
Resource ID of Managed Identity that is used to access the key vault.
|
|
1596
|
+
"""
|
|
1597
|
+
return pulumi.get(self, "msi_resource_id")
|
|
1598
|
+
|
|
1599
|
+
@property
|
|
1600
|
+
@pulumi.getter(name="vaultUri")
|
|
1601
|
+
def vault_uri(self) -> Optional[str]:
|
|
1602
|
+
"""
|
|
1603
|
+
Base key vault URI where the customers key is located eg. https://myvault.vault.azure.net
|
|
1604
|
+
"""
|
|
1605
|
+
return pulumi.get(self, "vault_uri")
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
@pulumi.output_type
|
|
1609
|
+
class EncryptionInTransitPropertiesResponse(dict):
|
|
1610
|
+
"""
|
|
1611
|
+
The encryption-in-transit properties.
|
|
1612
|
+
"""
|
|
1613
|
+
@staticmethod
|
|
1614
|
+
def __key_warning(key: str):
|
|
1615
|
+
suggest = None
|
|
1616
|
+
if key == "isEncryptionInTransitEnabled":
|
|
1617
|
+
suggest = "is_encryption_in_transit_enabled"
|
|
1618
|
+
|
|
1619
|
+
if suggest:
|
|
1620
|
+
pulumi.log.warn(f"Key '{key}' not found in EncryptionInTransitPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1621
|
+
|
|
1622
|
+
def __getitem__(self, key: str) -> Any:
|
|
1623
|
+
EncryptionInTransitPropertiesResponse.__key_warning(key)
|
|
1624
|
+
return super().__getitem__(key)
|
|
1625
|
+
|
|
1626
|
+
def get(self, key: str, default = None) -> Any:
|
|
1627
|
+
EncryptionInTransitPropertiesResponse.__key_warning(key)
|
|
1628
|
+
return super().get(key, default)
|
|
1629
|
+
|
|
1630
|
+
def __init__(__self__, *,
|
|
1631
|
+
is_encryption_in_transit_enabled: Optional[bool] = None):
|
|
1632
|
+
"""
|
|
1633
|
+
The encryption-in-transit properties.
|
|
1634
|
+
:param bool is_encryption_in_transit_enabled: Indicates whether or not inter cluster node communication is encrypted in transit.
|
|
1635
|
+
"""
|
|
1636
|
+
if is_encryption_in_transit_enabled is None:
|
|
1637
|
+
is_encryption_in_transit_enabled = False
|
|
1638
|
+
if is_encryption_in_transit_enabled is not None:
|
|
1639
|
+
pulumi.set(__self__, "is_encryption_in_transit_enabled", is_encryption_in_transit_enabled)
|
|
1640
|
+
|
|
1641
|
+
@property
|
|
1642
|
+
@pulumi.getter(name="isEncryptionInTransitEnabled")
|
|
1643
|
+
def is_encryption_in_transit_enabled(self) -> Optional[bool]:
|
|
1644
|
+
"""
|
|
1645
|
+
Indicates whether or not inter cluster node communication is encrypted in transit.
|
|
1646
|
+
"""
|
|
1647
|
+
return pulumi.get(self, "is_encryption_in_transit_enabled")
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
@pulumi.output_type
|
|
1651
|
+
class ErrorsResponse(dict):
|
|
1652
|
+
"""
|
|
1653
|
+
The error message associated with the cluster creation.
|
|
1654
|
+
"""
|
|
1655
|
+
def __init__(__self__, *,
|
|
1656
|
+
code: Optional[str] = None,
|
|
1657
|
+
message: Optional[str] = None):
|
|
1658
|
+
"""
|
|
1659
|
+
The error message associated with the cluster creation.
|
|
1660
|
+
:param str code: The error code.
|
|
1661
|
+
:param str message: The error message.
|
|
1662
|
+
"""
|
|
1663
|
+
if code is not None:
|
|
1664
|
+
pulumi.set(__self__, "code", code)
|
|
1665
|
+
if message is not None:
|
|
1666
|
+
pulumi.set(__self__, "message", message)
|
|
1667
|
+
|
|
1668
|
+
@property
|
|
1669
|
+
@pulumi.getter
|
|
1670
|
+
def code(self) -> Optional[str]:
|
|
1671
|
+
"""
|
|
1672
|
+
The error code.
|
|
1673
|
+
"""
|
|
1674
|
+
return pulumi.get(self, "code")
|
|
1675
|
+
|
|
1676
|
+
@property
|
|
1677
|
+
@pulumi.getter
|
|
1678
|
+
def message(self) -> Optional[str]:
|
|
1679
|
+
"""
|
|
1680
|
+
The error message.
|
|
1681
|
+
"""
|
|
1682
|
+
return pulumi.get(self, "message")
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
@pulumi.output_type
|
|
1686
|
+
class ExcludedServicesConfigResponse(dict):
|
|
1687
|
+
"""
|
|
1688
|
+
The configuration that services will be excluded when creating cluster.
|
|
1689
|
+
"""
|
|
1690
|
+
@staticmethod
|
|
1691
|
+
def __key_warning(key: str):
|
|
1692
|
+
suggest = None
|
|
1693
|
+
if key == "excludedServicesConfigId":
|
|
1694
|
+
suggest = "excluded_services_config_id"
|
|
1695
|
+
elif key == "excludedServicesList":
|
|
1696
|
+
suggest = "excluded_services_list"
|
|
1697
|
+
|
|
1698
|
+
if suggest:
|
|
1699
|
+
pulumi.log.warn(f"Key '{key}' not found in ExcludedServicesConfigResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1700
|
+
|
|
1701
|
+
def __getitem__(self, key: str) -> Any:
|
|
1702
|
+
ExcludedServicesConfigResponse.__key_warning(key)
|
|
1703
|
+
return super().__getitem__(key)
|
|
1704
|
+
|
|
1705
|
+
def get(self, key: str, default = None) -> Any:
|
|
1706
|
+
ExcludedServicesConfigResponse.__key_warning(key)
|
|
1707
|
+
return super().get(key, default)
|
|
1708
|
+
|
|
1709
|
+
def __init__(__self__, *,
|
|
1710
|
+
excluded_services_config_id: Optional[str] = None,
|
|
1711
|
+
excluded_services_list: Optional[str] = None):
|
|
1712
|
+
"""
|
|
1713
|
+
The configuration that services will be excluded when creating cluster.
|
|
1714
|
+
:param str excluded_services_config_id: The config id of excluded services.
|
|
1715
|
+
:param str excluded_services_list: The list of excluded services.
|
|
1716
|
+
"""
|
|
1717
|
+
if excluded_services_config_id is not None:
|
|
1718
|
+
pulumi.set(__self__, "excluded_services_config_id", excluded_services_config_id)
|
|
1719
|
+
if excluded_services_list is not None:
|
|
1720
|
+
pulumi.set(__self__, "excluded_services_list", excluded_services_list)
|
|
1721
|
+
|
|
1722
|
+
@property
|
|
1723
|
+
@pulumi.getter(name="excludedServicesConfigId")
|
|
1724
|
+
def excluded_services_config_id(self) -> Optional[str]:
|
|
1725
|
+
"""
|
|
1726
|
+
The config id of excluded services.
|
|
1727
|
+
"""
|
|
1728
|
+
return pulumi.get(self, "excluded_services_config_id")
|
|
1729
|
+
|
|
1730
|
+
@property
|
|
1731
|
+
@pulumi.getter(name="excludedServicesList")
|
|
1732
|
+
def excluded_services_list(self) -> Optional[str]:
|
|
1733
|
+
"""
|
|
1734
|
+
The list of excluded services.
|
|
1735
|
+
"""
|
|
1736
|
+
return pulumi.get(self, "excluded_services_list")
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
@pulumi.output_type
|
|
1740
|
+
class HardwareProfileResponse(dict):
|
|
1741
|
+
"""
|
|
1742
|
+
The hardware profile.
|
|
1743
|
+
"""
|
|
1744
|
+
@staticmethod
|
|
1745
|
+
def __key_warning(key: str):
|
|
1746
|
+
suggest = None
|
|
1747
|
+
if key == "vmSize":
|
|
1748
|
+
suggest = "vm_size"
|
|
1749
|
+
|
|
1750
|
+
if suggest:
|
|
1751
|
+
pulumi.log.warn(f"Key '{key}' not found in HardwareProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1752
|
+
|
|
1753
|
+
def __getitem__(self, key: str) -> Any:
|
|
1754
|
+
HardwareProfileResponse.__key_warning(key)
|
|
1755
|
+
return super().__getitem__(key)
|
|
1756
|
+
|
|
1757
|
+
def get(self, key: str, default = None) -> Any:
|
|
1758
|
+
HardwareProfileResponse.__key_warning(key)
|
|
1759
|
+
return super().get(key, default)
|
|
1760
|
+
|
|
1761
|
+
def __init__(__self__, *,
|
|
1762
|
+
vm_size: Optional[str] = None):
|
|
1763
|
+
"""
|
|
1764
|
+
The hardware profile.
|
|
1765
|
+
:param str vm_size: The size of the VM
|
|
1766
|
+
"""
|
|
1767
|
+
if vm_size is not None:
|
|
1768
|
+
pulumi.set(__self__, "vm_size", vm_size)
|
|
1769
|
+
|
|
1770
|
+
@property
|
|
1771
|
+
@pulumi.getter(name="vmSize")
|
|
1772
|
+
def vm_size(self) -> Optional[str]:
|
|
1773
|
+
"""
|
|
1774
|
+
The size of the VM
|
|
1775
|
+
"""
|
|
1776
|
+
return pulumi.get(self, "vm_size")
|
|
1777
|
+
|
|
1778
|
+
|
|
1779
|
+
@pulumi.output_type
|
|
1780
|
+
class IPConfigurationResponse(dict):
|
|
1781
|
+
"""
|
|
1782
|
+
The ip configurations for the private link service.
|
|
1783
|
+
"""
|
|
1784
|
+
@staticmethod
|
|
1785
|
+
def __key_warning(key: str):
|
|
1786
|
+
suggest = None
|
|
1787
|
+
if key == "provisioningState":
|
|
1788
|
+
suggest = "provisioning_state"
|
|
1789
|
+
elif key == "privateIPAddress":
|
|
1790
|
+
suggest = "private_ip_address"
|
|
1791
|
+
elif key == "privateIPAllocationMethod":
|
|
1792
|
+
suggest = "private_ip_allocation_method"
|
|
1793
|
+
|
|
1794
|
+
if suggest:
|
|
1795
|
+
pulumi.log.warn(f"Key '{key}' not found in IPConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1796
|
+
|
|
1797
|
+
def __getitem__(self, key: str) -> Any:
|
|
1798
|
+
IPConfigurationResponse.__key_warning(key)
|
|
1799
|
+
return super().__getitem__(key)
|
|
1800
|
+
|
|
1801
|
+
def get(self, key: str, default = None) -> Any:
|
|
1802
|
+
IPConfigurationResponse.__key_warning(key)
|
|
1803
|
+
return super().get(key, default)
|
|
1804
|
+
|
|
1805
|
+
def __init__(__self__, *,
|
|
1806
|
+
id: str,
|
|
1807
|
+
name: str,
|
|
1808
|
+
provisioning_state: str,
|
|
1809
|
+
type: str,
|
|
1810
|
+
primary: Optional[bool] = None,
|
|
1811
|
+
private_ip_address: Optional[str] = None,
|
|
1812
|
+
private_ip_allocation_method: Optional[str] = None,
|
|
1813
|
+
subnet: Optional['outputs.ResourceIdResponse'] = None):
|
|
1814
|
+
"""
|
|
1815
|
+
The ip configurations for the private link service.
|
|
1816
|
+
:param str id: The private link IP configuration id.
|
|
1817
|
+
:param str name: The name of private link IP configuration.
|
|
1818
|
+
:param str provisioning_state: The private link configuration provisioning state, which only appears in the response.
|
|
1819
|
+
:param str type: The type of the private link IP configuration.
|
|
1820
|
+
:param bool primary: Indicates whether this IP configuration is primary for the corresponding NIC.
|
|
1821
|
+
:param str private_ip_address: The IP address.
|
|
1822
|
+
:param str private_ip_allocation_method: The method that private IP address is allocated.
|
|
1823
|
+
:param 'ResourceIdResponse' subnet: The subnet resource id.
|
|
1824
|
+
"""
|
|
1825
|
+
pulumi.set(__self__, "id", id)
|
|
1826
|
+
pulumi.set(__self__, "name", name)
|
|
1827
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
1828
|
+
pulumi.set(__self__, "type", type)
|
|
1829
|
+
if primary is not None:
|
|
1830
|
+
pulumi.set(__self__, "primary", primary)
|
|
1831
|
+
if private_ip_address is not None:
|
|
1832
|
+
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
|
1833
|
+
if private_ip_allocation_method is not None:
|
|
1834
|
+
pulumi.set(__self__, "private_ip_allocation_method", private_ip_allocation_method)
|
|
1835
|
+
if subnet is not None:
|
|
1836
|
+
pulumi.set(__self__, "subnet", subnet)
|
|
1837
|
+
|
|
1838
|
+
@property
|
|
1839
|
+
@pulumi.getter
|
|
1840
|
+
def id(self) -> str:
|
|
1841
|
+
"""
|
|
1842
|
+
The private link IP configuration id.
|
|
1843
|
+
"""
|
|
1844
|
+
return pulumi.get(self, "id")
|
|
1845
|
+
|
|
1846
|
+
@property
|
|
1847
|
+
@pulumi.getter
|
|
1848
|
+
def name(self) -> str:
|
|
1849
|
+
"""
|
|
1850
|
+
The name of private link IP configuration.
|
|
1851
|
+
"""
|
|
1852
|
+
return pulumi.get(self, "name")
|
|
1853
|
+
|
|
1854
|
+
@property
|
|
1855
|
+
@pulumi.getter(name="provisioningState")
|
|
1856
|
+
def provisioning_state(self) -> str:
|
|
1857
|
+
"""
|
|
1858
|
+
The private link configuration provisioning state, which only appears in the response.
|
|
1859
|
+
"""
|
|
1860
|
+
return pulumi.get(self, "provisioning_state")
|
|
1861
|
+
|
|
1862
|
+
@property
|
|
1863
|
+
@pulumi.getter
|
|
1864
|
+
def type(self) -> str:
|
|
1865
|
+
"""
|
|
1866
|
+
The type of the private link IP configuration.
|
|
1867
|
+
"""
|
|
1868
|
+
return pulumi.get(self, "type")
|
|
1869
|
+
|
|
1870
|
+
@property
|
|
1871
|
+
@pulumi.getter
|
|
1872
|
+
def primary(self) -> Optional[bool]:
|
|
1873
|
+
"""
|
|
1874
|
+
Indicates whether this IP configuration is primary for the corresponding NIC.
|
|
1875
|
+
"""
|
|
1876
|
+
return pulumi.get(self, "primary")
|
|
1877
|
+
|
|
1878
|
+
@property
|
|
1879
|
+
@pulumi.getter(name="privateIPAddress")
|
|
1880
|
+
def private_ip_address(self) -> Optional[str]:
|
|
1881
|
+
"""
|
|
1882
|
+
The IP address.
|
|
1883
|
+
"""
|
|
1884
|
+
return pulumi.get(self, "private_ip_address")
|
|
1885
|
+
|
|
1886
|
+
@property
|
|
1887
|
+
@pulumi.getter(name="privateIPAllocationMethod")
|
|
1888
|
+
def private_ip_allocation_method(self) -> Optional[str]:
|
|
1889
|
+
"""
|
|
1890
|
+
The method that private IP address is allocated.
|
|
1891
|
+
"""
|
|
1892
|
+
return pulumi.get(self, "private_ip_allocation_method")
|
|
1893
|
+
|
|
1894
|
+
@property
|
|
1895
|
+
@pulumi.getter
|
|
1896
|
+
def subnet(self) -> Optional['outputs.ResourceIdResponse']:
|
|
1897
|
+
"""
|
|
1898
|
+
The subnet resource id.
|
|
1899
|
+
"""
|
|
1900
|
+
return pulumi.get(self, "subnet")
|
|
1901
|
+
|
|
1902
|
+
|
|
1903
|
+
@pulumi.output_type
|
|
1904
|
+
class IpTagResponse(dict):
|
|
1905
|
+
"""
|
|
1906
|
+
Contains the IpTag associated with the public IP address
|
|
1907
|
+
"""
|
|
1908
|
+
@staticmethod
|
|
1909
|
+
def __key_warning(key: str):
|
|
1910
|
+
suggest = None
|
|
1911
|
+
if key == "ipTagType":
|
|
1912
|
+
suggest = "ip_tag_type"
|
|
1913
|
+
|
|
1914
|
+
if suggest:
|
|
1915
|
+
pulumi.log.warn(f"Key '{key}' not found in IpTagResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1916
|
+
|
|
1917
|
+
def __getitem__(self, key: str) -> Any:
|
|
1918
|
+
IpTagResponse.__key_warning(key)
|
|
1919
|
+
return super().__getitem__(key)
|
|
1920
|
+
|
|
1921
|
+
def get(self, key: str, default = None) -> Any:
|
|
1922
|
+
IpTagResponse.__key_warning(key)
|
|
1923
|
+
return super().get(key, default)
|
|
1924
|
+
|
|
1925
|
+
def __init__(__self__, *,
|
|
1926
|
+
ip_tag_type: str,
|
|
1927
|
+
tag: str):
|
|
1928
|
+
"""
|
|
1929
|
+
Contains the IpTag associated with the public IP address
|
|
1930
|
+
:param str ip_tag_type: Gets or sets the ipTag type: Example FirstPartyUsage.
|
|
1931
|
+
:param str tag: Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
|
|
1932
|
+
"""
|
|
1933
|
+
pulumi.set(__self__, "ip_tag_type", ip_tag_type)
|
|
1934
|
+
pulumi.set(__self__, "tag", tag)
|
|
1935
|
+
|
|
1936
|
+
@property
|
|
1937
|
+
@pulumi.getter(name="ipTagType")
|
|
1938
|
+
def ip_tag_type(self) -> str:
|
|
1939
|
+
"""
|
|
1940
|
+
Gets or sets the ipTag type: Example FirstPartyUsage.
|
|
1941
|
+
"""
|
|
1942
|
+
return pulumi.get(self, "ip_tag_type")
|
|
1943
|
+
|
|
1944
|
+
@property
|
|
1945
|
+
@pulumi.getter
|
|
1946
|
+
def tag(self) -> str:
|
|
1947
|
+
"""
|
|
1948
|
+
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
|
|
1949
|
+
"""
|
|
1950
|
+
return pulumi.get(self, "tag")
|
|
1951
|
+
|
|
1952
|
+
|
|
1953
|
+
@pulumi.output_type
|
|
1954
|
+
class KafkaRestPropertiesResponse(dict):
|
|
1955
|
+
"""
|
|
1956
|
+
The kafka rest proxy configuration which contains AAD security group information.
|
|
1957
|
+
"""
|
|
1958
|
+
@staticmethod
|
|
1959
|
+
def __key_warning(key: str):
|
|
1960
|
+
suggest = None
|
|
1961
|
+
if key == "clientGroupInfo":
|
|
1962
|
+
suggest = "client_group_info"
|
|
1963
|
+
elif key == "configurationOverride":
|
|
1964
|
+
suggest = "configuration_override"
|
|
1965
|
+
|
|
1966
|
+
if suggest:
|
|
1967
|
+
pulumi.log.warn(f"Key '{key}' not found in KafkaRestPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1968
|
+
|
|
1969
|
+
def __getitem__(self, key: str) -> Any:
|
|
1970
|
+
KafkaRestPropertiesResponse.__key_warning(key)
|
|
1971
|
+
return super().__getitem__(key)
|
|
1972
|
+
|
|
1973
|
+
def get(self, key: str, default = None) -> Any:
|
|
1974
|
+
KafkaRestPropertiesResponse.__key_warning(key)
|
|
1975
|
+
return super().get(key, default)
|
|
1976
|
+
|
|
1977
|
+
def __init__(__self__, *,
|
|
1978
|
+
client_group_info: Optional['outputs.ClientGroupInfoResponse'] = None,
|
|
1979
|
+
configuration_override: Optional[Mapping[str, str]] = None):
|
|
1980
|
+
"""
|
|
1981
|
+
The kafka rest proxy configuration which contains AAD security group information.
|
|
1982
|
+
:param 'ClientGroupInfoResponse' client_group_info: The information of AAD security group.
|
|
1983
|
+
:param Mapping[str, str] configuration_override: The configurations that need to be overriden.
|
|
1984
|
+
"""
|
|
1985
|
+
if client_group_info is not None:
|
|
1986
|
+
pulumi.set(__self__, "client_group_info", client_group_info)
|
|
1987
|
+
if configuration_override is not None:
|
|
1988
|
+
pulumi.set(__self__, "configuration_override", configuration_override)
|
|
1989
|
+
|
|
1990
|
+
@property
|
|
1991
|
+
@pulumi.getter(name="clientGroupInfo")
|
|
1992
|
+
def client_group_info(self) -> Optional['outputs.ClientGroupInfoResponse']:
|
|
1993
|
+
"""
|
|
1994
|
+
The information of AAD security group.
|
|
1995
|
+
"""
|
|
1996
|
+
return pulumi.get(self, "client_group_info")
|
|
1997
|
+
|
|
1998
|
+
@property
|
|
1999
|
+
@pulumi.getter(name="configurationOverride")
|
|
2000
|
+
def configuration_override(self) -> Optional[Mapping[str, str]]:
|
|
2001
|
+
"""
|
|
2002
|
+
The configurations that need to be overriden.
|
|
2003
|
+
"""
|
|
2004
|
+
return pulumi.get(self, "configuration_override")
|
|
2005
|
+
|
|
2006
|
+
|
|
2007
|
+
@pulumi.output_type
|
|
2008
|
+
class LinuxOperatingSystemProfileResponse(dict):
|
|
2009
|
+
"""
|
|
2010
|
+
The ssh username, password, and ssh public key.
|
|
2011
|
+
"""
|
|
2012
|
+
@staticmethod
|
|
2013
|
+
def __key_warning(key: str):
|
|
2014
|
+
suggest = None
|
|
2015
|
+
if key == "sshProfile":
|
|
2016
|
+
suggest = "ssh_profile"
|
|
2017
|
+
|
|
2018
|
+
if suggest:
|
|
2019
|
+
pulumi.log.warn(f"Key '{key}' not found in LinuxOperatingSystemProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2020
|
+
|
|
2021
|
+
def __getitem__(self, key: str) -> Any:
|
|
2022
|
+
LinuxOperatingSystemProfileResponse.__key_warning(key)
|
|
2023
|
+
return super().__getitem__(key)
|
|
2024
|
+
|
|
2025
|
+
def get(self, key: str, default = None) -> Any:
|
|
2026
|
+
LinuxOperatingSystemProfileResponse.__key_warning(key)
|
|
2027
|
+
return super().get(key, default)
|
|
2028
|
+
|
|
2029
|
+
def __init__(__self__, *,
|
|
2030
|
+
password: Optional[str] = None,
|
|
2031
|
+
ssh_profile: Optional['outputs.SshProfileResponse'] = None,
|
|
2032
|
+
username: Optional[str] = None):
|
|
2033
|
+
"""
|
|
2034
|
+
The ssh username, password, and ssh public key.
|
|
2035
|
+
:param str password: The password.
|
|
2036
|
+
:param 'SshProfileResponse' ssh_profile: The SSH profile.
|
|
2037
|
+
:param str username: The username.
|
|
2038
|
+
"""
|
|
2039
|
+
if password is not None:
|
|
2040
|
+
pulumi.set(__self__, "password", password)
|
|
2041
|
+
if ssh_profile is not None:
|
|
2042
|
+
pulumi.set(__self__, "ssh_profile", ssh_profile)
|
|
2043
|
+
if username is not None:
|
|
2044
|
+
pulumi.set(__self__, "username", username)
|
|
2045
|
+
|
|
2046
|
+
@property
|
|
2047
|
+
@pulumi.getter
|
|
2048
|
+
def password(self) -> Optional[str]:
|
|
2049
|
+
"""
|
|
2050
|
+
The password.
|
|
2051
|
+
"""
|
|
2052
|
+
return pulumi.get(self, "password")
|
|
2053
|
+
|
|
2054
|
+
@property
|
|
2055
|
+
@pulumi.getter(name="sshProfile")
|
|
2056
|
+
def ssh_profile(self) -> Optional['outputs.SshProfileResponse']:
|
|
2057
|
+
"""
|
|
2058
|
+
The SSH profile.
|
|
2059
|
+
"""
|
|
2060
|
+
return pulumi.get(self, "ssh_profile")
|
|
2061
|
+
|
|
2062
|
+
@property
|
|
2063
|
+
@pulumi.getter
|
|
2064
|
+
def username(self) -> Optional[str]:
|
|
2065
|
+
"""
|
|
2066
|
+
The username.
|
|
2067
|
+
"""
|
|
2068
|
+
return pulumi.get(self, "username")
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
@pulumi.output_type
|
|
2072
|
+
class NetworkPropertiesResponse(dict):
|
|
2073
|
+
"""
|
|
2074
|
+
The network properties.
|
|
2075
|
+
"""
|
|
2076
|
+
@staticmethod
|
|
2077
|
+
def __key_warning(key: str):
|
|
2078
|
+
suggest = None
|
|
2079
|
+
if key == "outboundDependenciesManagedType":
|
|
2080
|
+
suggest = "outbound_dependencies_managed_type"
|
|
2081
|
+
elif key == "privateLink":
|
|
2082
|
+
suggest = "private_link"
|
|
2083
|
+
elif key == "publicIpTag":
|
|
2084
|
+
suggest = "public_ip_tag"
|
|
2085
|
+
elif key == "resourceProviderConnection":
|
|
2086
|
+
suggest = "resource_provider_connection"
|
|
2087
|
+
|
|
2088
|
+
if suggest:
|
|
2089
|
+
pulumi.log.warn(f"Key '{key}' not found in NetworkPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2090
|
+
|
|
2091
|
+
def __getitem__(self, key: str) -> Any:
|
|
2092
|
+
NetworkPropertiesResponse.__key_warning(key)
|
|
2093
|
+
return super().__getitem__(key)
|
|
2094
|
+
|
|
2095
|
+
def get(self, key: str, default = None) -> Any:
|
|
2096
|
+
NetworkPropertiesResponse.__key_warning(key)
|
|
2097
|
+
return super().get(key, default)
|
|
2098
|
+
|
|
2099
|
+
def __init__(__self__, *,
|
|
2100
|
+
outbound_dependencies_managed_type: Optional[str] = None,
|
|
2101
|
+
private_link: Optional[str] = None,
|
|
2102
|
+
public_ip_tag: Optional['outputs.IpTagResponse'] = None,
|
|
2103
|
+
resource_provider_connection: Optional[str] = None):
|
|
2104
|
+
"""
|
|
2105
|
+
The network properties.
|
|
2106
|
+
:param str outbound_dependencies_managed_type: A value to describe how the outbound dependencies of a HDInsight cluster are managed. 'Managed' means that the outbound dependencies are managed by the HDInsight service. 'External' means that the outbound dependencies are managed by a customer specific solution.
|
|
2107
|
+
:param str private_link: Indicates whether or not private link is enabled.
|
|
2108
|
+
:param 'IpTagResponse' public_ip_tag: Gets or sets the IP tag for the public IPs created along with the HDInsight Clusters.
|
|
2109
|
+
:param str resource_provider_connection: The direction for the resource provider connection.
|
|
2110
|
+
"""
|
|
2111
|
+
if outbound_dependencies_managed_type is not None:
|
|
2112
|
+
pulumi.set(__self__, "outbound_dependencies_managed_type", outbound_dependencies_managed_type)
|
|
2113
|
+
if private_link is not None:
|
|
2114
|
+
pulumi.set(__self__, "private_link", private_link)
|
|
2115
|
+
if public_ip_tag is not None:
|
|
2116
|
+
pulumi.set(__self__, "public_ip_tag", public_ip_tag)
|
|
2117
|
+
if resource_provider_connection is not None:
|
|
2118
|
+
pulumi.set(__self__, "resource_provider_connection", resource_provider_connection)
|
|
2119
|
+
|
|
2120
|
+
@property
|
|
2121
|
+
@pulumi.getter(name="outboundDependenciesManagedType")
|
|
2122
|
+
def outbound_dependencies_managed_type(self) -> Optional[str]:
|
|
2123
|
+
"""
|
|
2124
|
+
A value to describe how the outbound dependencies of a HDInsight cluster are managed. 'Managed' means that the outbound dependencies are managed by the HDInsight service. 'External' means that the outbound dependencies are managed by a customer specific solution.
|
|
2125
|
+
"""
|
|
2126
|
+
return pulumi.get(self, "outbound_dependencies_managed_type")
|
|
2127
|
+
|
|
2128
|
+
@property
|
|
2129
|
+
@pulumi.getter(name="privateLink")
|
|
2130
|
+
def private_link(self) -> Optional[str]:
|
|
2131
|
+
"""
|
|
2132
|
+
Indicates whether or not private link is enabled.
|
|
2133
|
+
"""
|
|
2134
|
+
return pulumi.get(self, "private_link")
|
|
2135
|
+
|
|
2136
|
+
@property
|
|
2137
|
+
@pulumi.getter(name="publicIpTag")
|
|
2138
|
+
def public_ip_tag(self) -> Optional['outputs.IpTagResponse']:
|
|
2139
|
+
"""
|
|
2140
|
+
Gets or sets the IP tag for the public IPs created along with the HDInsight Clusters.
|
|
2141
|
+
"""
|
|
2142
|
+
return pulumi.get(self, "public_ip_tag")
|
|
2143
|
+
|
|
2144
|
+
@property
|
|
2145
|
+
@pulumi.getter(name="resourceProviderConnection")
|
|
2146
|
+
def resource_provider_connection(self) -> Optional[str]:
|
|
2147
|
+
"""
|
|
2148
|
+
The direction for the resource provider connection.
|
|
2149
|
+
"""
|
|
2150
|
+
return pulumi.get(self, "resource_provider_connection")
|
|
2151
|
+
|
|
2152
|
+
|
|
2153
|
+
@pulumi.output_type
|
|
2154
|
+
class OsProfileResponse(dict):
|
|
2155
|
+
"""
|
|
2156
|
+
The Linux operation systems profile.
|
|
2157
|
+
"""
|
|
2158
|
+
@staticmethod
|
|
2159
|
+
def __key_warning(key: str):
|
|
2160
|
+
suggest = None
|
|
2161
|
+
if key == "linuxOperatingSystemProfile":
|
|
2162
|
+
suggest = "linux_operating_system_profile"
|
|
2163
|
+
|
|
2164
|
+
if suggest:
|
|
2165
|
+
pulumi.log.warn(f"Key '{key}' not found in OsProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2166
|
+
|
|
2167
|
+
def __getitem__(self, key: str) -> Any:
|
|
2168
|
+
OsProfileResponse.__key_warning(key)
|
|
2169
|
+
return super().__getitem__(key)
|
|
2170
|
+
|
|
2171
|
+
def get(self, key: str, default = None) -> Any:
|
|
2172
|
+
OsProfileResponse.__key_warning(key)
|
|
2173
|
+
return super().get(key, default)
|
|
2174
|
+
|
|
2175
|
+
def __init__(__self__, *,
|
|
2176
|
+
linux_operating_system_profile: Optional['outputs.LinuxOperatingSystemProfileResponse'] = None):
|
|
2177
|
+
"""
|
|
2178
|
+
The Linux operation systems profile.
|
|
2179
|
+
:param 'LinuxOperatingSystemProfileResponse' linux_operating_system_profile: The Linux OS profile.
|
|
2180
|
+
"""
|
|
2181
|
+
if linux_operating_system_profile is not None:
|
|
2182
|
+
pulumi.set(__self__, "linux_operating_system_profile", linux_operating_system_profile)
|
|
2183
|
+
|
|
2184
|
+
@property
|
|
2185
|
+
@pulumi.getter(name="linuxOperatingSystemProfile")
|
|
2186
|
+
def linux_operating_system_profile(self) -> Optional['outputs.LinuxOperatingSystemProfileResponse']:
|
|
2187
|
+
"""
|
|
2188
|
+
The Linux OS profile.
|
|
2189
|
+
"""
|
|
2190
|
+
return pulumi.get(self, "linux_operating_system_profile")
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
@pulumi.output_type
|
|
2194
|
+
class PrivateEndpointConnectionResponse(dict):
|
|
2195
|
+
"""
|
|
2196
|
+
The private endpoint connection.
|
|
2197
|
+
"""
|
|
2198
|
+
@staticmethod
|
|
2199
|
+
def __key_warning(key: str):
|
|
2200
|
+
suggest = None
|
|
2201
|
+
if key == "linkIdentifier":
|
|
2202
|
+
suggest = "link_identifier"
|
|
2203
|
+
elif key == "privateEndpoint":
|
|
2204
|
+
suggest = "private_endpoint"
|
|
2205
|
+
elif key == "privateLinkServiceConnectionState":
|
|
2206
|
+
suggest = "private_link_service_connection_state"
|
|
2207
|
+
elif key == "provisioningState":
|
|
2208
|
+
suggest = "provisioning_state"
|
|
2209
|
+
elif key == "systemData":
|
|
2210
|
+
suggest = "system_data"
|
|
2211
|
+
|
|
2212
|
+
if suggest:
|
|
2213
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateEndpointConnectionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2214
|
+
|
|
2215
|
+
def __getitem__(self, key: str) -> Any:
|
|
2216
|
+
PrivateEndpointConnectionResponse.__key_warning(key)
|
|
2217
|
+
return super().__getitem__(key)
|
|
2218
|
+
|
|
2219
|
+
def get(self, key: str, default = None) -> Any:
|
|
2220
|
+
PrivateEndpointConnectionResponse.__key_warning(key)
|
|
2221
|
+
return super().get(key, default)
|
|
2222
|
+
|
|
2223
|
+
def __init__(__self__, *,
|
|
2224
|
+
id: str,
|
|
2225
|
+
link_identifier: str,
|
|
2226
|
+
name: str,
|
|
2227
|
+
private_endpoint: 'outputs.PrivateEndpointResponse',
|
|
2228
|
+
private_link_service_connection_state: 'outputs.PrivateLinkServiceConnectionStateResponse',
|
|
2229
|
+
provisioning_state: str,
|
|
2230
|
+
system_data: 'outputs.SystemDataResponse',
|
|
2231
|
+
type: str):
|
|
2232
|
+
"""
|
|
2233
|
+
The private endpoint connection.
|
|
2234
|
+
:param str id: Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
2235
|
+
:param str link_identifier: The link identifier.
|
|
2236
|
+
:param str name: The name of the resource
|
|
2237
|
+
:param 'PrivateEndpointResponse' private_endpoint: The private endpoint of the private endpoint connection
|
|
2238
|
+
:param 'PrivateLinkServiceConnectionStateResponse' private_link_service_connection_state: The private link service connection state.
|
|
2239
|
+
:param str provisioning_state: The provisioning state, which only appears in the response.
|
|
2240
|
+
:param 'SystemDataResponse' system_data: Metadata pertaining to creation and last modification of the resource.
|
|
2241
|
+
:param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
2242
|
+
"""
|
|
2243
|
+
pulumi.set(__self__, "id", id)
|
|
2244
|
+
pulumi.set(__self__, "link_identifier", link_identifier)
|
|
2245
|
+
pulumi.set(__self__, "name", name)
|
|
2246
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
2247
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
2248
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
2249
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
2250
|
+
pulumi.set(__self__, "type", type)
|
|
2251
|
+
|
|
2252
|
+
@property
|
|
2253
|
+
@pulumi.getter
|
|
2254
|
+
def id(self) -> str:
|
|
2255
|
+
"""
|
|
2256
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
2257
|
+
"""
|
|
2258
|
+
return pulumi.get(self, "id")
|
|
2259
|
+
|
|
2260
|
+
@property
|
|
2261
|
+
@pulumi.getter(name="linkIdentifier")
|
|
2262
|
+
def link_identifier(self) -> str:
|
|
2263
|
+
"""
|
|
2264
|
+
The link identifier.
|
|
2265
|
+
"""
|
|
2266
|
+
return pulumi.get(self, "link_identifier")
|
|
2267
|
+
|
|
2268
|
+
@property
|
|
2269
|
+
@pulumi.getter
|
|
2270
|
+
def name(self) -> str:
|
|
2271
|
+
"""
|
|
2272
|
+
The name of the resource
|
|
2273
|
+
"""
|
|
2274
|
+
return pulumi.get(self, "name")
|
|
2275
|
+
|
|
2276
|
+
@property
|
|
2277
|
+
@pulumi.getter(name="privateEndpoint")
|
|
2278
|
+
def private_endpoint(self) -> 'outputs.PrivateEndpointResponse':
|
|
2279
|
+
"""
|
|
2280
|
+
The private endpoint of the private endpoint connection
|
|
2281
|
+
"""
|
|
2282
|
+
return pulumi.get(self, "private_endpoint")
|
|
2283
|
+
|
|
2284
|
+
@property
|
|
2285
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
2286
|
+
def private_link_service_connection_state(self) -> 'outputs.PrivateLinkServiceConnectionStateResponse':
|
|
2287
|
+
"""
|
|
2288
|
+
The private link service connection state.
|
|
2289
|
+
"""
|
|
2290
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
2291
|
+
|
|
2292
|
+
@property
|
|
2293
|
+
@pulumi.getter(name="provisioningState")
|
|
2294
|
+
def provisioning_state(self) -> str:
|
|
2295
|
+
"""
|
|
2296
|
+
The provisioning state, which only appears in the response.
|
|
2297
|
+
"""
|
|
2298
|
+
return pulumi.get(self, "provisioning_state")
|
|
2299
|
+
|
|
2300
|
+
@property
|
|
2301
|
+
@pulumi.getter(name="systemData")
|
|
2302
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
2303
|
+
"""
|
|
2304
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
2305
|
+
"""
|
|
2306
|
+
return pulumi.get(self, "system_data")
|
|
2307
|
+
|
|
2308
|
+
@property
|
|
2309
|
+
@pulumi.getter
|
|
2310
|
+
def type(self) -> str:
|
|
2311
|
+
"""
|
|
2312
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
2313
|
+
"""
|
|
2314
|
+
return pulumi.get(self, "type")
|
|
2315
|
+
|
|
2316
|
+
|
|
2317
|
+
@pulumi.output_type
|
|
2318
|
+
class PrivateEndpointResponse(dict):
|
|
2319
|
+
"""
|
|
2320
|
+
The private endpoint.
|
|
2321
|
+
"""
|
|
2322
|
+
def __init__(__self__, *,
|
|
2323
|
+
id: Optional[str] = None):
|
|
2324
|
+
"""
|
|
2325
|
+
The private endpoint.
|
|
2326
|
+
:param str id: The private endpoint id.
|
|
2327
|
+
"""
|
|
2328
|
+
if id is not None:
|
|
2329
|
+
pulumi.set(__self__, "id", id)
|
|
2330
|
+
|
|
2331
|
+
@property
|
|
2332
|
+
@pulumi.getter
|
|
2333
|
+
def id(self) -> Optional[str]:
|
|
2334
|
+
"""
|
|
2335
|
+
The private endpoint id.
|
|
2336
|
+
"""
|
|
2337
|
+
return pulumi.get(self, "id")
|
|
2338
|
+
|
|
2339
|
+
|
|
2340
|
+
@pulumi.output_type
|
|
2341
|
+
class PrivateLinkConfigurationResponse(dict):
|
|
2342
|
+
"""
|
|
2343
|
+
The private link configuration.
|
|
2344
|
+
"""
|
|
2345
|
+
@staticmethod
|
|
2346
|
+
def __key_warning(key: str):
|
|
2347
|
+
suggest = None
|
|
2348
|
+
if key == "groupId":
|
|
2349
|
+
suggest = "group_id"
|
|
2350
|
+
elif key == "ipConfigurations":
|
|
2351
|
+
suggest = "ip_configurations"
|
|
2352
|
+
elif key == "provisioningState":
|
|
2353
|
+
suggest = "provisioning_state"
|
|
2354
|
+
|
|
2355
|
+
if suggest:
|
|
2356
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateLinkConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2357
|
+
|
|
2358
|
+
def __getitem__(self, key: str) -> Any:
|
|
2359
|
+
PrivateLinkConfigurationResponse.__key_warning(key)
|
|
2360
|
+
return super().__getitem__(key)
|
|
2361
|
+
|
|
2362
|
+
def get(self, key: str, default = None) -> Any:
|
|
2363
|
+
PrivateLinkConfigurationResponse.__key_warning(key)
|
|
2364
|
+
return super().get(key, default)
|
|
2365
|
+
|
|
2366
|
+
def __init__(__self__, *,
|
|
2367
|
+
group_id: str,
|
|
2368
|
+
id: str,
|
|
2369
|
+
ip_configurations: Sequence['outputs.IPConfigurationResponse'],
|
|
2370
|
+
name: str,
|
|
2371
|
+
provisioning_state: str,
|
|
2372
|
+
type: str):
|
|
2373
|
+
"""
|
|
2374
|
+
The private link configuration.
|
|
2375
|
+
:param str group_id: The HDInsight private linkable sub-resource name to apply the private link configuration to. For example, 'headnode', 'gateway', 'edgenode'.
|
|
2376
|
+
:param str id: The private link configuration id.
|
|
2377
|
+
:param Sequence['IPConfigurationResponse'] ip_configurations: The IP configurations for the private link service.
|
|
2378
|
+
:param str name: The name of private link configuration.
|
|
2379
|
+
:param str provisioning_state: The private link configuration provisioning state, which only appears in the response.
|
|
2380
|
+
:param str type: The type of the private link configuration.
|
|
2381
|
+
"""
|
|
2382
|
+
pulumi.set(__self__, "group_id", group_id)
|
|
2383
|
+
pulumi.set(__self__, "id", id)
|
|
2384
|
+
pulumi.set(__self__, "ip_configurations", ip_configurations)
|
|
2385
|
+
pulumi.set(__self__, "name", name)
|
|
2386
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
2387
|
+
pulumi.set(__self__, "type", type)
|
|
2388
|
+
|
|
2389
|
+
@property
|
|
2390
|
+
@pulumi.getter(name="groupId")
|
|
2391
|
+
def group_id(self) -> str:
|
|
2392
|
+
"""
|
|
2393
|
+
The HDInsight private linkable sub-resource name to apply the private link configuration to. For example, 'headnode', 'gateway', 'edgenode'.
|
|
2394
|
+
"""
|
|
2395
|
+
return pulumi.get(self, "group_id")
|
|
2396
|
+
|
|
2397
|
+
@property
|
|
2398
|
+
@pulumi.getter
|
|
2399
|
+
def id(self) -> str:
|
|
2400
|
+
"""
|
|
2401
|
+
The private link configuration id.
|
|
2402
|
+
"""
|
|
2403
|
+
return pulumi.get(self, "id")
|
|
2404
|
+
|
|
2405
|
+
@property
|
|
2406
|
+
@pulumi.getter(name="ipConfigurations")
|
|
2407
|
+
def ip_configurations(self) -> Sequence['outputs.IPConfigurationResponse']:
|
|
2408
|
+
"""
|
|
2409
|
+
The IP configurations for the private link service.
|
|
2410
|
+
"""
|
|
2411
|
+
return pulumi.get(self, "ip_configurations")
|
|
2412
|
+
|
|
2413
|
+
@property
|
|
2414
|
+
@pulumi.getter
|
|
2415
|
+
def name(self) -> str:
|
|
2416
|
+
"""
|
|
2417
|
+
The name of private link configuration.
|
|
2418
|
+
"""
|
|
2419
|
+
return pulumi.get(self, "name")
|
|
2420
|
+
|
|
2421
|
+
@property
|
|
2422
|
+
@pulumi.getter(name="provisioningState")
|
|
2423
|
+
def provisioning_state(self) -> str:
|
|
2424
|
+
"""
|
|
2425
|
+
The private link configuration provisioning state, which only appears in the response.
|
|
2426
|
+
"""
|
|
2427
|
+
return pulumi.get(self, "provisioning_state")
|
|
2428
|
+
|
|
2429
|
+
@property
|
|
2430
|
+
@pulumi.getter
|
|
2431
|
+
def type(self) -> str:
|
|
2432
|
+
"""
|
|
2433
|
+
The type of the private link configuration.
|
|
2434
|
+
"""
|
|
2435
|
+
return pulumi.get(self, "type")
|
|
2436
|
+
|
|
2437
|
+
|
|
2438
|
+
@pulumi.output_type
|
|
2439
|
+
class PrivateLinkServiceConnectionStateResponse(dict):
|
|
2440
|
+
"""
|
|
2441
|
+
The private link service connection state.
|
|
2442
|
+
"""
|
|
2443
|
+
@staticmethod
|
|
2444
|
+
def __key_warning(key: str):
|
|
2445
|
+
suggest = None
|
|
2446
|
+
if key == "actionsRequired":
|
|
2447
|
+
suggest = "actions_required"
|
|
2448
|
+
|
|
2449
|
+
if suggest:
|
|
2450
|
+
pulumi.log.warn(f"Key '{key}' not found in PrivateLinkServiceConnectionStateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2451
|
+
|
|
2452
|
+
def __getitem__(self, key: str) -> Any:
|
|
2453
|
+
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
|
|
2454
|
+
return super().__getitem__(key)
|
|
2455
|
+
|
|
2456
|
+
def get(self, key: str, default = None) -> Any:
|
|
2457
|
+
PrivateLinkServiceConnectionStateResponse.__key_warning(key)
|
|
2458
|
+
return super().get(key, default)
|
|
2459
|
+
|
|
2460
|
+
def __init__(__self__, *,
|
|
2461
|
+
status: str,
|
|
2462
|
+
actions_required: Optional[str] = None,
|
|
2463
|
+
description: Optional[str] = None):
|
|
2464
|
+
"""
|
|
2465
|
+
The private link service connection state.
|
|
2466
|
+
:param str status: The concrete private link service connection.
|
|
2467
|
+
:param str actions_required: Whether there is further actions.
|
|
2468
|
+
:param str description: The optional description of the status.
|
|
2469
|
+
"""
|
|
2470
|
+
pulumi.set(__self__, "status", status)
|
|
2471
|
+
if actions_required is not None:
|
|
2472
|
+
pulumi.set(__self__, "actions_required", actions_required)
|
|
2473
|
+
if description is not None:
|
|
2474
|
+
pulumi.set(__self__, "description", description)
|
|
2475
|
+
|
|
2476
|
+
@property
|
|
2477
|
+
@pulumi.getter
|
|
2478
|
+
def status(self) -> str:
|
|
2479
|
+
"""
|
|
2480
|
+
The concrete private link service connection.
|
|
2481
|
+
"""
|
|
2482
|
+
return pulumi.get(self, "status")
|
|
2483
|
+
|
|
2484
|
+
@property
|
|
2485
|
+
@pulumi.getter(name="actionsRequired")
|
|
2486
|
+
def actions_required(self) -> Optional[str]:
|
|
2487
|
+
"""
|
|
2488
|
+
Whether there is further actions.
|
|
2489
|
+
"""
|
|
2490
|
+
return pulumi.get(self, "actions_required")
|
|
2491
|
+
|
|
2492
|
+
@property
|
|
2493
|
+
@pulumi.getter
|
|
2494
|
+
def description(self) -> Optional[str]:
|
|
2495
|
+
"""
|
|
2496
|
+
The optional description of the status.
|
|
2497
|
+
"""
|
|
2498
|
+
return pulumi.get(self, "description")
|
|
2499
|
+
|
|
2500
|
+
|
|
2501
|
+
@pulumi.output_type
|
|
2502
|
+
class QuotaInfoResponse(dict):
|
|
2503
|
+
"""
|
|
2504
|
+
The quota properties for the cluster.
|
|
2505
|
+
"""
|
|
2506
|
+
@staticmethod
|
|
2507
|
+
def __key_warning(key: str):
|
|
2508
|
+
suggest = None
|
|
2509
|
+
if key == "coresUsed":
|
|
2510
|
+
suggest = "cores_used"
|
|
2511
|
+
|
|
2512
|
+
if suggest:
|
|
2513
|
+
pulumi.log.warn(f"Key '{key}' not found in QuotaInfoResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2514
|
+
|
|
2515
|
+
def __getitem__(self, key: str) -> Any:
|
|
2516
|
+
QuotaInfoResponse.__key_warning(key)
|
|
2517
|
+
return super().__getitem__(key)
|
|
2518
|
+
|
|
2519
|
+
def get(self, key: str, default = None) -> Any:
|
|
2520
|
+
QuotaInfoResponse.__key_warning(key)
|
|
2521
|
+
return super().get(key, default)
|
|
2522
|
+
|
|
2523
|
+
def __init__(__self__, *,
|
|
2524
|
+
cores_used: Optional[int] = None):
|
|
2525
|
+
"""
|
|
2526
|
+
The quota properties for the cluster.
|
|
2527
|
+
:param int cores_used: The cores used by the cluster.
|
|
2528
|
+
"""
|
|
2529
|
+
if cores_used is not None:
|
|
2530
|
+
pulumi.set(__self__, "cores_used", cores_used)
|
|
2531
|
+
|
|
2532
|
+
@property
|
|
2533
|
+
@pulumi.getter(name="coresUsed")
|
|
2534
|
+
def cores_used(self) -> Optional[int]:
|
|
2535
|
+
"""
|
|
2536
|
+
The cores used by the cluster.
|
|
2537
|
+
"""
|
|
2538
|
+
return pulumi.get(self, "cores_used")
|
|
2539
|
+
|
|
2540
|
+
|
|
2541
|
+
@pulumi.output_type
|
|
2542
|
+
class ResourceIdResponse(dict):
|
|
2543
|
+
"""
|
|
2544
|
+
The azure resource id.
|
|
2545
|
+
"""
|
|
2546
|
+
def __init__(__self__, *,
|
|
2547
|
+
id: Optional[str] = None):
|
|
2548
|
+
"""
|
|
2549
|
+
The azure resource id.
|
|
2550
|
+
:param str id: The azure resource id.
|
|
2551
|
+
"""
|
|
2552
|
+
if id is not None:
|
|
2553
|
+
pulumi.set(__self__, "id", id)
|
|
2554
|
+
|
|
2555
|
+
@property
|
|
2556
|
+
@pulumi.getter
|
|
2557
|
+
def id(self) -> Optional[str]:
|
|
2558
|
+
"""
|
|
2559
|
+
The azure resource id.
|
|
2560
|
+
"""
|
|
2561
|
+
return pulumi.get(self, "id")
|
|
2562
|
+
|
|
2563
|
+
|
|
2564
|
+
@pulumi.output_type
|
|
2565
|
+
class RoleResponse(dict):
|
|
2566
|
+
"""
|
|
2567
|
+
Describes a role on the cluster.
|
|
2568
|
+
"""
|
|
2569
|
+
@staticmethod
|
|
2570
|
+
def __key_warning(key: str):
|
|
2571
|
+
suggest = None
|
|
2572
|
+
if key == "autoscaleConfiguration":
|
|
2573
|
+
suggest = "autoscale_configuration"
|
|
2574
|
+
elif key == "dataDisksGroups":
|
|
2575
|
+
suggest = "data_disks_groups"
|
|
2576
|
+
elif key == "encryptDataDisks":
|
|
2577
|
+
suggest = "encrypt_data_disks"
|
|
2578
|
+
elif key == "hardwareProfile":
|
|
2579
|
+
suggest = "hardware_profile"
|
|
2580
|
+
elif key == "minInstanceCount":
|
|
2581
|
+
suggest = "min_instance_count"
|
|
2582
|
+
elif key == "osProfile":
|
|
2583
|
+
suggest = "os_profile"
|
|
2584
|
+
elif key == "scriptActions":
|
|
2585
|
+
suggest = "script_actions"
|
|
2586
|
+
elif key == "targetInstanceCount":
|
|
2587
|
+
suggest = "target_instance_count"
|
|
2588
|
+
elif key == "vMGroupName":
|
|
2589
|
+
suggest = "v_m_group_name"
|
|
2590
|
+
elif key == "virtualNetworkProfile":
|
|
2591
|
+
suggest = "virtual_network_profile"
|
|
2592
|
+
|
|
2593
|
+
if suggest:
|
|
2594
|
+
pulumi.log.warn(f"Key '{key}' not found in RoleResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2595
|
+
|
|
2596
|
+
def __getitem__(self, key: str) -> Any:
|
|
2597
|
+
RoleResponse.__key_warning(key)
|
|
2598
|
+
return super().__getitem__(key)
|
|
2599
|
+
|
|
2600
|
+
def get(self, key: str, default = None) -> Any:
|
|
2601
|
+
RoleResponse.__key_warning(key)
|
|
2602
|
+
return super().get(key, default)
|
|
2603
|
+
|
|
2604
|
+
def __init__(__self__, *,
|
|
2605
|
+
autoscale_configuration: Optional['outputs.AutoscaleResponse'] = None,
|
|
2606
|
+
data_disks_groups: Optional[Sequence['outputs.DataDisksGroupsResponse']] = None,
|
|
2607
|
+
encrypt_data_disks: Optional[bool] = None,
|
|
2608
|
+
hardware_profile: Optional['outputs.HardwareProfileResponse'] = None,
|
|
2609
|
+
min_instance_count: Optional[int] = None,
|
|
2610
|
+
name: Optional[str] = None,
|
|
2611
|
+
os_profile: Optional['outputs.OsProfileResponse'] = None,
|
|
2612
|
+
script_actions: Optional[Sequence['outputs.ScriptActionResponse']] = None,
|
|
2613
|
+
target_instance_count: Optional[int] = None,
|
|
2614
|
+
v_m_group_name: Optional[str] = None,
|
|
2615
|
+
virtual_network_profile: Optional['outputs.VirtualNetworkProfileResponse'] = None):
|
|
2616
|
+
"""
|
|
2617
|
+
Describes a role on the cluster.
|
|
2618
|
+
:param 'AutoscaleResponse' autoscale_configuration: The autoscale configurations.
|
|
2619
|
+
:param Sequence['DataDisksGroupsResponse'] data_disks_groups: The data disks groups for the role.
|
|
2620
|
+
:param bool encrypt_data_disks: Indicates whether encrypt the data disks.
|
|
2621
|
+
:param 'HardwareProfileResponse' hardware_profile: The hardware profile.
|
|
2622
|
+
:param int min_instance_count: The minimum instance count of the cluster.
|
|
2623
|
+
:param str name: The name of the role.
|
|
2624
|
+
:param 'OsProfileResponse' os_profile: The operating system profile.
|
|
2625
|
+
:param Sequence['ScriptActionResponse'] script_actions: The list of script actions on the role.
|
|
2626
|
+
:param int target_instance_count: The instance count of the cluster.
|
|
2627
|
+
:param str v_m_group_name: The name of the virtual machine group.
|
|
2628
|
+
:param 'VirtualNetworkProfileResponse' virtual_network_profile: The virtual network profile.
|
|
2629
|
+
"""
|
|
2630
|
+
if autoscale_configuration is not None:
|
|
2631
|
+
pulumi.set(__self__, "autoscale_configuration", autoscale_configuration)
|
|
2632
|
+
if data_disks_groups is not None:
|
|
2633
|
+
pulumi.set(__self__, "data_disks_groups", data_disks_groups)
|
|
2634
|
+
if encrypt_data_disks is None:
|
|
2635
|
+
encrypt_data_disks = False
|
|
2636
|
+
if encrypt_data_disks is not None:
|
|
2637
|
+
pulumi.set(__self__, "encrypt_data_disks", encrypt_data_disks)
|
|
2638
|
+
if hardware_profile is not None:
|
|
2639
|
+
pulumi.set(__self__, "hardware_profile", hardware_profile)
|
|
2640
|
+
if min_instance_count is not None:
|
|
2641
|
+
pulumi.set(__self__, "min_instance_count", min_instance_count)
|
|
2642
|
+
if name is not None:
|
|
2643
|
+
pulumi.set(__self__, "name", name)
|
|
2644
|
+
if os_profile is not None:
|
|
2645
|
+
pulumi.set(__self__, "os_profile", os_profile)
|
|
2646
|
+
if script_actions is not None:
|
|
2647
|
+
pulumi.set(__self__, "script_actions", script_actions)
|
|
2648
|
+
if target_instance_count is not None:
|
|
2649
|
+
pulumi.set(__self__, "target_instance_count", target_instance_count)
|
|
2650
|
+
if v_m_group_name is not None:
|
|
2651
|
+
pulumi.set(__self__, "v_m_group_name", v_m_group_name)
|
|
2652
|
+
if virtual_network_profile is not None:
|
|
2653
|
+
pulumi.set(__self__, "virtual_network_profile", virtual_network_profile)
|
|
2654
|
+
|
|
2655
|
+
@property
|
|
2656
|
+
@pulumi.getter(name="autoscaleConfiguration")
|
|
2657
|
+
def autoscale_configuration(self) -> Optional['outputs.AutoscaleResponse']:
|
|
2658
|
+
"""
|
|
2659
|
+
The autoscale configurations.
|
|
2660
|
+
"""
|
|
2661
|
+
return pulumi.get(self, "autoscale_configuration")
|
|
2662
|
+
|
|
2663
|
+
@property
|
|
2664
|
+
@pulumi.getter(name="dataDisksGroups")
|
|
2665
|
+
def data_disks_groups(self) -> Optional[Sequence['outputs.DataDisksGroupsResponse']]:
|
|
2666
|
+
"""
|
|
2667
|
+
The data disks groups for the role.
|
|
2668
|
+
"""
|
|
2669
|
+
return pulumi.get(self, "data_disks_groups")
|
|
2670
|
+
|
|
2671
|
+
@property
|
|
2672
|
+
@pulumi.getter(name="encryptDataDisks")
|
|
2673
|
+
def encrypt_data_disks(self) -> Optional[bool]:
|
|
2674
|
+
"""
|
|
2675
|
+
Indicates whether encrypt the data disks.
|
|
2676
|
+
"""
|
|
2677
|
+
return pulumi.get(self, "encrypt_data_disks")
|
|
2678
|
+
|
|
2679
|
+
@property
|
|
2680
|
+
@pulumi.getter(name="hardwareProfile")
|
|
2681
|
+
def hardware_profile(self) -> Optional['outputs.HardwareProfileResponse']:
|
|
2682
|
+
"""
|
|
2683
|
+
The hardware profile.
|
|
2684
|
+
"""
|
|
2685
|
+
return pulumi.get(self, "hardware_profile")
|
|
2686
|
+
|
|
2687
|
+
@property
|
|
2688
|
+
@pulumi.getter(name="minInstanceCount")
|
|
2689
|
+
def min_instance_count(self) -> Optional[int]:
|
|
2690
|
+
"""
|
|
2691
|
+
The minimum instance count of the cluster.
|
|
2692
|
+
"""
|
|
2693
|
+
return pulumi.get(self, "min_instance_count")
|
|
2694
|
+
|
|
2695
|
+
@property
|
|
2696
|
+
@pulumi.getter
|
|
2697
|
+
def name(self) -> Optional[str]:
|
|
2698
|
+
"""
|
|
2699
|
+
The name of the role.
|
|
2700
|
+
"""
|
|
2701
|
+
return pulumi.get(self, "name")
|
|
2702
|
+
|
|
2703
|
+
@property
|
|
2704
|
+
@pulumi.getter(name="osProfile")
|
|
2705
|
+
def os_profile(self) -> Optional['outputs.OsProfileResponse']:
|
|
2706
|
+
"""
|
|
2707
|
+
The operating system profile.
|
|
2708
|
+
"""
|
|
2709
|
+
return pulumi.get(self, "os_profile")
|
|
2710
|
+
|
|
2711
|
+
@property
|
|
2712
|
+
@pulumi.getter(name="scriptActions")
|
|
2713
|
+
def script_actions(self) -> Optional[Sequence['outputs.ScriptActionResponse']]:
|
|
2714
|
+
"""
|
|
2715
|
+
The list of script actions on the role.
|
|
2716
|
+
"""
|
|
2717
|
+
return pulumi.get(self, "script_actions")
|
|
2718
|
+
|
|
2719
|
+
@property
|
|
2720
|
+
@pulumi.getter(name="targetInstanceCount")
|
|
2721
|
+
def target_instance_count(self) -> Optional[int]:
|
|
2722
|
+
"""
|
|
2723
|
+
The instance count of the cluster.
|
|
2724
|
+
"""
|
|
2725
|
+
return pulumi.get(self, "target_instance_count")
|
|
2726
|
+
|
|
2727
|
+
@property
|
|
2728
|
+
@pulumi.getter(name="vMGroupName")
|
|
2729
|
+
def v_m_group_name(self) -> Optional[str]:
|
|
2730
|
+
"""
|
|
2731
|
+
The name of the virtual machine group.
|
|
2732
|
+
"""
|
|
2733
|
+
return pulumi.get(self, "v_m_group_name")
|
|
2734
|
+
|
|
2735
|
+
@property
|
|
2736
|
+
@pulumi.getter(name="virtualNetworkProfile")
|
|
2737
|
+
def virtual_network_profile(self) -> Optional['outputs.VirtualNetworkProfileResponse']:
|
|
2738
|
+
"""
|
|
2739
|
+
The virtual network profile.
|
|
2740
|
+
"""
|
|
2741
|
+
return pulumi.get(self, "virtual_network_profile")
|
|
2742
|
+
|
|
2743
|
+
|
|
2744
|
+
@pulumi.output_type
|
|
2745
|
+
class RuntimeScriptActionResponse(dict):
|
|
2746
|
+
"""
|
|
2747
|
+
Describes a script action on a running cluster.
|
|
2748
|
+
"""
|
|
2749
|
+
@staticmethod
|
|
2750
|
+
def __key_warning(key: str):
|
|
2751
|
+
suggest = None
|
|
2752
|
+
if key == "applicationName":
|
|
2753
|
+
suggest = "application_name"
|
|
2754
|
+
|
|
2755
|
+
if suggest:
|
|
2756
|
+
pulumi.log.warn(f"Key '{key}' not found in RuntimeScriptActionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2757
|
+
|
|
2758
|
+
def __getitem__(self, key: str) -> Any:
|
|
2759
|
+
RuntimeScriptActionResponse.__key_warning(key)
|
|
2760
|
+
return super().__getitem__(key)
|
|
2761
|
+
|
|
2762
|
+
def get(self, key: str, default = None) -> Any:
|
|
2763
|
+
RuntimeScriptActionResponse.__key_warning(key)
|
|
2764
|
+
return super().get(key, default)
|
|
2765
|
+
|
|
2766
|
+
def __init__(__self__, *,
|
|
2767
|
+
application_name: str,
|
|
2768
|
+
name: str,
|
|
2769
|
+
roles: Sequence[str],
|
|
2770
|
+
uri: str,
|
|
2771
|
+
parameters: Optional[str] = None):
|
|
2772
|
+
"""
|
|
2773
|
+
Describes a script action on a running cluster.
|
|
2774
|
+
:param str application_name: The application name of the script action, if any.
|
|
2775
|
+
:param str name: The name of the script action.
|
|
2776
|
+
:param Sequence[str] roles: The list of roles where script will be executed.
|
|
2777
|
+
:param str uri: The URI to the script.
|
|
2778
|
+
:param str parameters: The parameters for the script
|
|
2779
|
+
"""
|
|
2780
|
+
pulumi.set(__self__, "application_name", application_name)
|
|
2781
|
+
pulumi.set(__self__, "name", name)
|
|
2782
|
+
pulumi.set(__self__, "roles", roles)
|
|
2783
|
+
pulumi.set(__self__, "uri", uri)
|
|
2784
|
+
if parameters is not None:
|
|
2785
|
+
pulumi.set(__self__, "parameters", parameters)
|
|
2786
|
+
|
|
2787
|
+
@property
|
|
2788
|
+
@pulumi.getter(name="applicationName")
|
|
2789
|
+
def application_name(self) -> str:
|
|
2790
|
+
"""
|
|
2791
|
+
The application name of the script action, if any.
|
|
2792
|
+
"""
|
|
2793
|
+
return pulumi.get(self, "application_name")
|
|
2794
|
+
|
|
2795
|
+
@property
|
|
2796
|
+
@pulumi.getter
|
|
2797
|
+
def name(self) -> str:
|
|
2798
|
+
"""
|
|
2799
|
+
The name of the script action.
|
|
2800
|
+
"""
|
|
2801
|
+
return pulumi.get(self, "name")
|
|
2802
|
+
|
|
2803
|
+
@property
|
|
2804
|
+
@pulumi.getter
|
|
2805
|
+
def roles(self) -> Sequence[str]:
|
|
2806
|
+
"""
|
|
2807
|
+
The list of roles where script will be executed.
|
|
2808
|
+
"""
|
|
2809
|
+
return pulumi.get(self, "roles")
|
|
2810
|
+
|
|
2811
|
+
@property
|
|
2812
|
+
@pulumi.getter
|
|
2813
|
+
def uri(self) -> str:
|
|
2814
|
+
"""
|
|
2815
|
+
The URI to the script.
|
|
2816
|
+
"""
|
|
2817
|
+
return pulumi.get(self, "uri")
|
|
2818
|
+
|
|
2819
|
+
@property
|
|
2820
|
+
@pulumi.getter
|
|
2821
|
+
def parameters(self) -> Optional[str]:
|
|
2822
|
+
"""
|
|
2823
|
+
The parameters for the script
|
|
2824
|
+
"""
|
|
2825
|
+
return pulumi.get(self, "parameters")
|
|
2826
|
+
|
|
2827
|
+
|
|
2828
|
+
@pulumi.output_type
|
|
2829
|
+
class ScriptActionResponse(dict):
|
|
2830
|
+
"""
|
|
2831
|
+
Describes a script action on role on the cluster.
|
|
2832
|
+
"""
|
|
2833
|
+
def __init__(__self__, *,
|
|
2834
|
+
name: str,
|
|
2835
|
+
parameters: str,
|
|
2836
|
+
uri: str):
|
|
2837
|
+
"""
|
|
2838
|
+
Describes a script action on role on the cluster.
|
|
2839
|
+
:param str name: The name of the script action.
|
|
2840
|
+
:param str parameters: The parameters for the script provided.
|
|
2841
|
+
:param str uri: The URI to the script.
|
|
2842
|
+
"""
|
|
2843
|
+
pulumi.set(__self__, "name", name)
|
|
2844
|
+
pulumi.set(__self__, "parameters", parameters)
|
|
2845
|
+
pulumi.set(__self__, "uri", uri)
|
|
2846
|
+
|
|
2847
|
+
@property
|
|
2848
|
+
@pulumi.getter
|
|
2849
|
+
def name(self) -> str:
|
|
2850
|
+
"""
|
|
2851
|
+
The name of the script action.
|
|
2852
|
+
"""
|
|
2853
|
+
return pulumi.get(self, "name")
|
|
2854
|
+
|
|
2855
|
+
@property
|
|
2856
|
+
@pulumi.getter
|
|
2857
|
+
def parameters(self) -> str:
|
|
2858
|
+
"""
|
|
2859
|
+
The parameters for the script provided.
|
|
2860
|
+
"""
|
|
2861
|
+
return pulumi.get(self, "parameters")
|
|
2862
|
+
|
|
2863
|
+
@property
|
|
2864
|
+
@pulumi.getter
|
|
2865
|
+
def uri(self) -> str:
|
|
2866
|
+
"""
|
|
2867
|
+
The URI to the script.
|
|
2868
|
+
"""
|
|
2869
|
+
return pulumi.get(self, "uri")
|
|
2870
|
+
|
|
2871
|
+
|
|
2872
|
+
@pulumi.output_type
|
|
2873
|
+
class SecurityProfileResponse(dict):
|
|
2874
|
+
"""
|
|
2875
|
+
The security profile which contains Ssh public key for the HDInsight cluster.
|
|
2876
|
+
"""
|
|
2877
|
+
@staticmethod
|
|
2878
|
+
def __key_warning(key: str):
|
|
2879
|
+
suggest = None
|
|
2880
|
+
if key == "aaddsResourceId":
|
|
2881
|
+
suggest = "aadds_resource_id"
|
|
2882
|
+
elif key == "clusterUsersGroupDNs":
|
|
2883
|
+
suggest = "cluster_users_group_dns"
|
|
2884
|
+
elif key == "directoryType":
|
|
2885
|
+
suggest = "directory_type"
|
|
2886
|
+
elif key == "domainUserPassword":
|
|
2887
|
+
suggest = "domain_user_password"
|
|
2888
|
+
elif key == "domainUsername":
|
|
2889
|
+
suggest = "domain_username"
|
|
2890
|
+
elif key == "ldapsUrls":
|
|
2891
|
+
suggest = "ldaps_urls"
|
|
2892
|
+
elif key == "msiResourceId":
|
|
2893
|
+
suggest = "msi_resource_id"
|
|
2894
|
+
elif key == "organizationalUnitDN":
|
|
2895
|
+
suggest = "organizational_unit_dn"
|
|
2896
|
+
|
|
2897
|
+
if suggest:
|
|
2898
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2899
|
+
|
|
2900
|
+
def __getitem__(self, key: str) -> Any:
|
|
2901
|
+
SecurityProfileResponse.__key_warning(key)
|
|
2902
|
+
return super().__getitem__(key)
|
|
2903
|
+
|
|
2904
|
+
def get(self, key: str, default = None) -> Any:
|
|
2905
|
+
SecurityProfileResponse.__key_warning(key)
|
|
2906
|
+
return super().get(key, default)
|
|
2907
|
+
|
|
2908
|
+
def __init__(__self__, *,
|
|
2909
|
+
aadds_resource_id: Optional[str] = None,
|
|
2910
|
+
cluster_users_group_dns: Optional[Sequence[str]] = None,
|
|
2911
|
+
directory_type: Optional[str] = None,
|
|
2912
|
+
domain: Optional[str] = None,
|
|
2913
|
+
domain_user_password: Optional[str] = None,
|
|
2914
|
+
domain_username: Optional[str] = None,
|
|
2915
|
+
ldaps_urls: Optional[Sequence[str]] = None,
|
|
2916
|
+
msi_resource_id: Optional[str] = None,
|
|
2917
|
+
organizational_unit_dn: Optional[str] = None):
|
|
2918
|
+
"""
|
|
2919
|
+
The security profile which contains Ssh public key for the HDInsight cluster.
|
|
2920
|
+
:param str aadds_resource_id: The resource ID of the user's Azure Active Directory Domain Service.
|
|
2921
|
+
:param Sequence[str] cluster_users_group_dns: Optional. The Distinguished Names for cluster user groups
|
|
2922
|
+
:param str directory_type: The directory type.
|
|
2923
|
+
:param str domain: The organization's active directory domain.
|
|
2924
|
+
:param str domain_user_password: The domain admin password.
|
|
2925
|
+
:param str domain_username: The domain user account that will have admin privileges on the cluster.
|
|
2926
|
+
:param Sequence[str] ldaps_urls: The LDAPS protocol URLs to communicate with the Active Directory.
|
|
2927
|
+
:param str msi_resource_id: User assigned identity that has permissions to read and create cluster-related artifacts in the user's AADDS.
|
|
2928
|
+
:param str organizational_unit_dn: The organizational unit within the Active Directory to place the cluster and service accounts.
|
|
2929
|
+
"""
|
|
2930
|
+
if aadds_resource_id is not None:
|
|
2931
|
+
pulumi.set(__self__, "aadds_resource_id", aadds_resource_id)
|
|
2932
|
+
if cluster_users_group_dns is not None:
|
|
2933
|
+
pulumi.set(__self__, "cluster_users_group_dns", cluster_users_group_dns)
|
|
2934
|
+
if directory_type is not None:
|
|
2935
|
+
pulumi.set(__self__, "directory_type", directory_type)
|
|
2936
|
+
if domain is not None:
|
|
2937
|
+
pulumi.set(__self__, "domain", domain)
|
|
2938
|
+
if domain_user_password is not None:
|
|
2939
|
+
pulumi.set(__self__, "domain_user_password", domain_user_password)
|
|
2940
|
+
if domain_username is not None:
|
|
2941
|
+
pulumi.set(__self__, "domain_username", domain_username)
|
|
2942
|
+
if ldaps_urls is not None:
|
|
2943
|
+
pulumi.set(__self__, "ldaps_urls", ldaps_urls)
|
|
2944
|
+
if msi_resource_id is not None:
|
|
2945
|
+
pulumi.set(__self__, "msi_resource_id", msi_resource_id)
|
|
2946
|
+
if organizational_unit_dn is not None:
|
|
2947
|
+
pulumi.set(__self__, "organizational_unit_dn", organizational_unit_dn)
|
|
2948
|
+
|
|
2949
|
+
@property
|
|
2950
|
+
@pulumi.getter(name="aaddsResourceId")
|
|
2951
|
+
def aadds_resource_id(self) -> Optional[str]:
|
|
2952
|
+
"""
|
|
2953
|
+
The resource ID of the user's Azure Active Directory Domain Service.
|
|
2954
|
+
"""
|
|
2955
|
+
return pulumi.get(self, "aadds_resource_id")
|
|
2956
|
+
|
|
2957
|
+
@property
|
|
2958
|
+
@pulumi.getter(name="clusterUsersGroupDNs")
|
|
2959
|
+
def cluster_users_group_dns(self) -> Optional[Sequence[str]]:
|
|
2960
|
+
"""
|
|
2961
|
+
Optional. The Distinguished Names for cluster user groups
|
|
2962
|
+
"""
|
|
2963
|
+
return pulumi.get(self, "cluster_users_group_dns")
|
|
2964
|
+
|
|
2965
|
+
@property
|
|
2966
|
+
@pulumi.getter(name="directoryType")
|
|
2967
|
+
def directory_type(self) -> Optional[str]:
|
|
2968
|
+
"""
|
|
2969
|
+
The directory type.
|
|
2970
|
+
"""
|
|
2971
|
+
return pulumi.get(self, "directory_type")
|
|
2972
|
+
|
|
2973
|
+
@property
|
|
2974
|
+
@pulumi.getter
|
|
2975
|
+
def domain(self) -> Optional[str]:
|
|
2976
|
+
"""
|
|
2977
|
+
The organization's active directory domain.
|
|
2978
|
+
"""
|
|
2979
|
+
return pulumi.get(self, "domain")
|
|
2980
|
+
|
|
2981
|
+
@property
|
|
2982
|
+
@pulumi.getter(name="domainUserPassword")
|
|
2983
|
+
def domain_user_password(self) -> Optional[str]:
|
|
2984
|
+
"""
|
|
2985
|
+
The domain admin password.
|
|
2986
|
+
"""
|
|
2987
|
+
return pulumi.get(self, "domain_user_password")
|
|
2988
|
+
|
|
2989
|
+
@property
|
|
2990
|
+
@pulumi.getter(name="domainUsername")
|
|
2991
|
+
def domain_username(self) -> Optional[str]:
|
|
2992
|
+
"""
|
|
2993
|
+
The domain user account that will have admin privileges on the cluster.
|
|
2994
|
+
"""
|
|
2995
|
+
return pulumi.get(self, "domain_username")
|
|
2996
|
+
|
|
2997
|
+
@property
|
|
2998
|
+
@pulumi.getter(name="ldapsUrls")
|
|
2999
|
+
def ldaps_urls(self) -> Optional[Sequence[str]]:
|
|
3000
|
+
"""
|
|
3001
|
+
The LDAPS protocol URLs to communicate with the Active Directory.
|
|
3002
|
+
"""
|
|
3003
|
+
return pulumi.get(self, "ldaps_urls")
|
|
3004
|
+
|
|
3005
|
+
@property
|
|
3006
|
+
@pulumi.getter(name="msiResourceId")
|
|
3007
|
+
def msi_resource_id(self) -> Optional[str]:
|
|
3008
|
+
"""
|
|
3009
|
+
User assigned identity that has permissions to read and create cluster-related artifacts in the user's AADDS.
|
|
3010
|
+
"""
|
|
3011
|
+
return pulumi.get(self, "msi_resource_id")
|
|
3012
|
+
|
|
3013
|
+
@property
|
|
3014
|
+
@pulumi.getter(name="organizationalUnitDN")
|
|
3015
|
+
def organizational_unit_dn(self) -> Optional[str]:
|
|
3016
|
+
"""
|
|
3017
|
+
The organizational unit within the Active Directory to place the cluster and service accounts.
|
|
3018
|
+
"""
|
|
3019
|
+
return pulumi.get(self, "organizational_unit_dn")
|
|
3020
|
+
|
|
3021
|
+
|
|
3022
|
+
@pulumi.output_type
|
|
3023
|
+
class SshProfileResponse(dict):
|
|
3024
|
+
"""
|
|
3025
|
+
The list of SSH public keys.
|
|
3026
|
+
"""
|
|
3027
|
+
@staticmethod
|
|
3028
|
+
def __key_warning(key: str):
|
|
3029
|
+
suggest = None
|
|
3030
|
+
if key == "publicKeys":
|
|
3031
|
+
suggest = "public_keys"
|
|
3032
|
+
|
|
3033
|
+
if suggest:
|
|
3034
|
+
pulumi.log.warn(f"Key '{key}' not found in SshProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3035
|
+
|
|
3036
|
+
def __getitem__(self, key: str) -> Any:
|
|
3037
|
+
SshProfileResponse.__key_warning(key)
|
|
3038
|
+
return super().__getitem__(key)
|
|
3039
|
+
|
|
3040
|
+
def get(self, key: str, default = None) -> Any:
|
|
3041
|
+
SshProfileResponse.__key_warning(key)
|
|
3042
|
+
return super().get(key, default)
|
|
3043
|
+
|
|
3044
|
+
def __init__(__self__, *,
|
|
3045
|
+
public_keys: Optional[Sequence['outputs.SshPublicKeyResponse']] = None):
|
|
3046
|
+
"""
|
|
3047
|
+
The list of SSH public keys.
|
|
3048
|
+
:param Sequence['SshPublicKeyResponse'] public_keys: The list of SSH public keys.
|
|
3049
|
+
"""
|
|
3050
|
+
if public_keys is not None:
|
|
3051
|
+
pulumi.set(__self__, "public_keys", public_keys)
|
|
3052
|
+
|
|
3053
|
+
@property
|
|
3054
|
+
@pulumi.getter(name="publicKeys")
|
|
3055
|
+
def public_keys(self) -> Optional[Sequence['outputs.SshPublicKeyResponse']]:
|
|
3056
|
+
"""
|
|
3057
|
+
The list of SSH public keys.
|
|
3058
|
+
"""
|
|
3059
|
+
return pulumi.get(self, "public_keys")
|
|
3060
|
+
|
|
3061
|
+
|
|
3062
|
+
@pulumi.output_type
|
|
3063
|
+
class SshPublicKeyResponse(dict):
|
|
3064
|
+
"""
|
|
3065
|
+
The SSH public key for the cluster nodes.
|
|
3066
|
+
"""
|
|
3067
|
+
@staticmethod
|
|
3068
|
+
def __key_warning(key: str):
|
|
3069
|
+
suggest = None
|
|
3070
|
+
if key == "certificateData":
|
|
3071
|
+
suggest = "certificate_data"
|
|
3072
|
+
|
|
3073
|
+
if suggest:
|
|
3074
|
+
pulumi.log.warn(f"Key '{key}' not found in SshPublicKeyResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3075
|
+
|
|
3076
|
+
def __getitem__(self, key: str) -> Any:
|
|
3077
|
+
SshPublicKeyResponse.__key_warning(key)
|
|
3078
|
+
return super().__getitem__(key)
|
|
3079
|
+
|
|
3080
|
+
def get(self, key: str, default = None) -> Any:
|
|
3081
|
+
SshPublicKeyResponse.__key_warning(key)
|
|
3082
|
+
return super().get(key, default)
|
|
3083
|
+
|
|
3084
|
+
def __init__(__self__, *,
|
|
3085
|
+
certificate_data: Optional[str] = None):
|
|
3086
|
+
"""
|
|
3087
|
+
The SSH public key for the cluster nodes.
|
|
3088
|
+
:param str certificate_data: The certificate for SSH.
|
|
3089
|
+
"""
|
|
3090
|
+
if certificate_data is not None:
|
|
3091
|
+
pulumi.set(__self__, "certificate_data", certificate_data)
|
|
3092
|
+
|
|
3093
|
+
@property
|
|
3094
|
+
@pulumi.getter(name="certificateData")
|
|
3095
|
+
def certificate_data(self) -> Optional[str]:
|
|
3096
|
+
"""
|
|
3097
|
+
The certificate for SSH.
|
|
3098
|
+
"""
|
|
3099
|
+
return pulumi.get(self, "certificate_data")
|
|
3100
|
+
|
|
3101
|
+
|
|
3102
|
+
@pulumi.output_type
|
|
3103
|
+
class StorageAccountResponse(dict):
|
|
3104
|
+
"""
|
|
3105
|
+
The storage Account.
|
|
3106
|
+
"""
|
|
3107
|
+
@staticmethod
|
|
3108
|
+
def __key_warning(key: str):
|
|
3109
|
+
suggest = None
|
|
3110
|
+
if key == "enableSecureChannel":
|
|
3111
|
+
suggest = "enable_secure_channel"
|
|
3112
|
+
elif key == "fileSystem":
|
|
3113
|
+
suggest = "file_system"
|
|
3114
|
+
elif key == "isDefault":
|
|
3115
|
+
suggest = "is_default"
|
|
3116
|
+
elif key == "msiResourceId":
|
|
3117
|
+
suggest = "msi_resource_id"
|
|
3118
|
+
elif key == "resourceId":
|
|
3119
|
+
suggest = "resource_id"
|
|
3120
|
+
|
|
3121
|
+
if suggest:
|
|
3122
|
+
pulumi.log.warn(f"Key '{key}' not found in StorageAccountResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3123
|
+
|
|
3124
|
+
def __getitem__(self, key: str) -> Any:
|
|
3125
|
+
StorageAccountResponse.__key_warning(key)
|
|
3126
|
+
return super().__getitem__(key)
|
|
3127
|
+
|
|
3128
|
+
def get(self, key: str, default = None) -> Any:
|
|
3129
|
+
StorageAccountResponse.__key_warning(key)
|
|
3130
|
+
return super().get(key, default)
|
|
3131
|
+
|
|
3132
|
+
def __init__(__self__, *,
|
|
3133
|
+
container: Optional[str] = None,
|
|
3134
|
+
enable_secure_channel: Optional[bool] = None,
|
|
3135
|
+
file_system: Optional[str] = None,
|
|
3136
|
+
fileshare: Optional[str] = None,
|
|
3137
|
+
is_default: Optional[bool] = None,
|
|
3138
|
+
key: Optional[str] = None,
|
|
3139
|
+
msi_resource_id: Optional[str] = None,
|
|
3140
|
+
name: Optional[str] = None,
|
|
3141
|
+
resource_id: Optional[str] = None,
|
|
3142
|
+
saskey: Optional[str] = None):
|
|
3143
|
+
"""
|
|
3144
|
+
The storage Account.
|
|
3145
|
+
:param str container: The container in the storage account, only to be specified for WASB storage accounts.
|
|
3146
|
+
:param bool enable_secure_channel: Enable secure channel or not, it's an optional field. Default value is false when cluster version < 5.1 and true when cluster version >= 5.1 ,
|
|
3147
|
+
:param str file_system: The filesystem, only to be specified for Azure Data Lake Storage Gen 2.
|
|
3148
|
+
:param str fileshare: The file share name.
|
|
3149
|
+
:param bool is_default: Whether or not the storage account is the default storage account.
|
|
3150
|
+
:param str key: The storage account access key.
|
|
3151
|
+
:param str msi_resource_id: The managed identity (MSI) that is allowed to access the storage account, only to be specified for Azure Data Lake Storage Gen 2.
|
|
3152
|
+
:param str name: The name of the storage account.
|
|
3153
|
+
:param str resource_id: The resource ID of storage account, only to be specified for Azure Data Lake Storage Gen 2.
|
|
3154
|
+
:param str saskey: The shared access signature key.
|
|
3155
|
+
"""
|
|
3156
|
+
if container is not None:
|
|
3157
|
+
pulumi.set(__self__, "container", container)
|
|
3158
|
+
if enable_secure_channel is not None:
|
|
3159
|
+
pulumi.set(__self__, "enable_secure_channel", enable_secure_channel)
|
|
3160
|
+
if file_system is not None:
|
|
3161
|
+
pulumi.set(__self__, "file_system", file_system)
|
|
3162
|
+
if fileshare is not None:
|
|
3163
|
+
pulumi.set(__self__, "fileshare", fileshare)
|
|
3164
|
+
if is_default is not None:
|
|
3165
|
+
pulumi.set(__self__, "is_default", is_default)
|
|
3166
|
+
if key is not None:
|
|
3167
|
+
pulumi.set(__self__, "key", key)
|
|
3168
|
+
if msi_resource_id is not None:
|
|
3169
|
+
pulumi.set(__self__, "msi_resource_id", msi_resource_id)
|
|
3170
|
+
if name is not None:
|
|
3171
|
+
pulumi.set(__self__, "name", name)
|
|
3172
|
+
if resource_id is not None:
|
|
3173
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
|
3174
|
+
if saskey is not None:
|
|
3175
|
+
pulumi.set(__self__, "saskey", saskey)
|
|
3176
|
+
|
|
3177
|
+
@property
|
|
3178
|
+
@pulumi.getter
|
|
3179
|
+
def container(self) -> Optional[str]:
|
|
3180
|
+
"""
|
|
3181
|
+
The container in the storage account, only to be specified for WASB storage accounts.
|
|
3182
|
+
"""
|
|
3183
|
+
return pulumi.get(self, "container")
|
|
3184
|
+
|
|
3185
|
+
@property
|
|
3186
|
+
@pulumi.getter(name="enableSecureChannel")
|
|
3187
|
+
def enable_secure_channel(self) -> Optional[bool]:
|
|
3188
|
+
"""
|
|
3189
|
+
Enable secure channel or not, it's an optional field. Default value is false when cluster version < 5.1 and true when cluster version >= 5.1 ,
|
|
3190
|
+
"""
|
|
3191
|
+
return pulumi.get(self, "enable_secure_channel")
|
|
3192
|
+
|
|
3193
|
+
@property
|
|
3194
|
+
@pulumi.getter(name="fileSystem")
|
|
3195
|
+
def file_system(self) -> Optional[str]:
|
|
3196
|
+
"""
|
|
3197
|
+
The filesystem, only to be specified for Azure Data Lake Storage Gen 2.
|
|
3198
|
+
"""
|
|
3199
|
+
return pulumi.get(self, "file_system")
|
|
3200
|
+
|
|
3201
|
+
@property
|
|
3202
|
+
@pulumi.getter
|
|
3203
|
+
def fileshare(self) -> Optional[str]:
|
|
3204
|
+
"""
|
|
3205
|
+
The file share name.
|
|
3206
|
+
"""
|
|
3207
|
+
return pulumi.get(self, "fileshare")
|
|
3208
|
+
|
|
3209
|
+
@property
|
|
3210
|
+
@pulumi.getter(name="isDefault")
|
|
3211
|
+
def is_default(self) -> Optional[bool]:
|
|
3212
|
+
"""
|
|
3213
|
+
Whether or not the storage account is the default storage account.
|
|
3214
|
+
"""
|
|
3215
|
+
return pulumi.get(self, "is_default")
|
|
3216
|
+
|
|
3217
|
+
@property
|
|
3218
|
+
@pulumi.getter
|
|
3219
|
+
def key(self) -> Optional[str]:
|
|
3220
|
+
"""
|
|
3221
|
+
The storage account access key.
|
|
3222
|
+
"""
|
|
3223
|
+
return pulumi.get(self, "key")
|
|
3224
|
+
|
|
3225
|
+
@property
|
|
3226
|
+
@pulumi.getter(name="msiResourceId")
|
|
3227
|
+
def msi_resource_id(self) -> Optional[str]:
|
|
3228
|
+
"""
|
|
3229
|
+
The managed identity (MSI) that is allowed to access the storage account, only to be specified for Azure Data Lake Storage Gen 2.
|
|
3230
|
+
"""
|
|
3231
|
+
return pulumi.get(self, "msi_resource_id")
|
|
3232
|
+
|
|
3233
|
+
@property
|
|
3234
|
+
@pulumi.getter
|
|
3235
|
+
def name(self) -> Optional[str]:
|
|
3236
|
+
"""
|
|
3237
|
+
The name of the storage account.
|
|
3238
|
+
"""
|
|
3239
|
+
return pulumi.get(self, "name")
|
|
3240
|
+
|
|
3241
|
+
@property
|
|
3242
|
+
@pulumi.getter(name="resourceId")
|
|
3243
|
+
def resource_id(self) -> Optional[str]:
|
|
3244
|
+
"""
|
|
3245
|
+
The resource ID of storage account, only to be specified for Azure Data Lake Storage Gen 2.
|
|
3246
|
+
"""
|
|
3247
|
+
return pulumi.get(self, "resource_id")
|
|
3248
|
+
|
|
3249
|
+
@property
|
|
3250
|
+
@pulumi.getter
|
|
3251
|
+
def saskey(self) -> Optional[str]:
|
|
3252
|
+
"""
|
|
3253
|
+
The shared access signature key.
|
|
3254
|
+
"""
|
|
3255
|
+
return pulumi.get(self, "saskey")
|
|
3256
|
+
|
|
3257
|
+
|
|
3258
|
+
@pulumi.output_type
|
|
3259
|
+
class StorageProfileResponse(dict):
|
|
3260
|
+
"""
|
|
3261
|
+
The storage profile.
|
|
3262
|
+
"""
|
|
3263
|
+
def __init__(__self__, *,
|
|
3264
|
+
storageaccounts: Optional[Sequence['outputs.StorageAccountResponse']] = None):
|
|
3265
|
+
"""
|
|
3266
|
+
The storage profile.
|
|
3267
|
+
:param Sequence['StorageAccountResponse'] storageaccounts: The list of storage accounts in the cluster.
|
|
3268
|
+
"""
|
|
3269
|
+
if storageaccounts is not None:
|
|
3270
|
+
pulumi.set(__self__, "storageaccounts", storageaccounts)
|
|
3271
|
+
|
|
3272
|
+
@property
|
|
3273
|
+
@pulumi.getter
|
|
3274
|
+
def storageaccounts(self) -> Optional[Sequence['outputs.StorageAccountResponse']]:
|
|
3275
|
+
"""
|
|
3276
|
+
The list of storage accounts in the cluster.
|
|
3277
|
+
"""
|
|
3278
|
+
return pulumi.get(self, "storageaccounts")
|
|
3279
|
+
|
|
3280
|
+
|
|
3281
|
+
@pulumi.output_type
|
|
3282
|
+
class SystemDataResponse(dict):
|
|
3283
|
+
"""
|
|
3284
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
3285
|
+
"""
|
|
3286
|
+
@staticmethod
|
|
3287
|
+
def __key_warning(key: str):
|
|
3288
|
+
suggest = None
|
|
3289
|
+
if key == "createdAt":
|
|
3290
|
+
suggest = "created_at"
|
|
3291
|
+
elif key == "createdBy":
|
|
3292
|
+
suggest = "created_by"
|
|
3293
|
+
elif key == "createdByType":
|
|
3294
|
+
suggest = "created_by_type"
|
|
3295
|
+
elif key == "lastModifiedAt":
|
|
3296
|
+
suggest = "last_modified_at"
|
|
3297
|
+
elif key == "lastModifiedBy":
|
|
3298
|
+
suggest = "last_modified_by"
|
|
3299
|
+
elif key == "lastModifiedByType":
|
|
3300
|
+
suggest = "last_modified_by_type"
|
|
3301
|
+
|
|
3302
|
+
if suggest:
|
|
3303
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3304
|
+
|
|
3305
|
+
def __getitem__(self, key: str) -> Any:
|
|
3306
|
+
SystemDataResponse.__key_warning(key)
|
|
3307
|
+
return super().__getitem__(key)
|
|
3308
|
+
|
|
3309
|
+
def get(self, key: str, default = None) -> Any:
|
|
3310
|
+
SystemDataResponse.__key_warning(key)
|
|
3311
|
+
return super().get(key, default)
|
|
3312
|
+
|
|
3313
|
+
def __init__(__self__, *,
|
|
3314
|
+
created_at: Optional[str] = None,
|
|
3315
|
+
created_by: Optional[str] = None,
|
|
3316
|
+
created_by_type: Optional[str] = None,
|
|
3317
|
+
last_modified_at: Optional[str] = None,
|
|
3318
|
+
last_modified_by: Optional[str] = None,
|
|
3319
|
+
last_modified_by_type: Optional[str] = None):
|
|
3320
|
+
"""
|
|
3321
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
3322
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
3323
|
+
:param str created_by: The identity that created the resource.
|
|
3324
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
3325
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
3326
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
3327
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
3328
|
+
"""
|
|
3329
|
+
if created_at is not None:
|
|
3330
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
3331
|
+
if created_by is not None:
|
|
3332
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
3333
|
+
if created_by_type is not None:
|
|
3334
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
3335
|
+
if last_modified_at is not None:
|
|
3336
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
3337
|
+
if last_modified_by is not None:
|
|
3338
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
3339
|
+
if last_modified_by_type is not None:
|
|
3340
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
3341
|
+
|
|
3342
|
+
@property
|
|
3343
|
+
@pulumi.getter(name="createdAt")
|
|
3344
|
+
def created_at(self) -> Optional[str]:
|
|
3345
|
+
"""
|
|
3346
|
+
The timestamp of resource creation (UTC).
|
|
3347
|
+
"""
|
|
3348
|
+
return pulumi.get(self, "created_at")
|
|
3349
|
+
|
|
3350
|
+
@property
|
|
3351
|
+
@pulumi.getter(name="createdBy")
|
|
3352
|
+
def created_by(self) -> Optional[str]:
|
|
3353
|
+
"""
|
|
3354
|
+
The identity that created the resource.
|
|
3355
|
+
"""
|
|
3356
|
+
return pulumi.get(self, "created_by")
|
|
3357
|
+
|
|
3358
|
+
@property
|
|
3359
|
+
@pulumi.getter(name="createdByType")
|
|
3360
|
+
def created_by_type(self) -> Optional[str]:
|
|
3361
|
+
"""
|
|
3362
|
+
The type of identity that created the resource.
|
|
3363
|
+
"""
|
|
3364
|
+
return pulumi.get(self, "created_by_type")
|
|
3365
|
+
|
|
3366
|
+
@property
|
|
3367
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
3368
|
+
def last_modified_at(self) -> Optional[str]:
|
|
3369
|
+
"""
|
|
3370
|
+
The timestamp of resource last modification (UTC)
|
|
3371
|
+
"""
|
|
3372
|
+
return pulumi.get(self, "last_modified_at")
|
|
3373
|
+
|
|
3374
|
+
@property
|
|
3375
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
3376
|
+
def last_modified_by(self) -> Optional[str]:
|
|
3377
|
+
"""
|
|
3378
|
+
The identity that last modified the resource.
|
|
3379
|
+
"""
|
|
3380
|
+
return pulumi.get(self, "last_modified_by")
|
|
3381
|
+
|
|
3382
|
+
@property
|
|
3383
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
3384
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
3385
|
+
"""
|
|
3386
|
+
The type of identity that last modified the resource.
|
|
3387
|
+
"""
|
|
3388
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
3389
|
+
|
|
3390
|
+
|
|
3391
|
+
@pulumi.output_type
|
|
3392
|
+
class UserAssignedIdentityResponse(dict):
|
|
3393
|
+
"""
|
|
3394
|
+
The User Assigned Identity
|
|
3395
|
+
"""
|
|
3396
|
+
@staticmethod
|
|
3397
|
+
def __key_warning(key: str):
|
|
3398
|
+
suggest = None
|
|
3399
|
+
if key == "clientId":
|
|
3400
|
+
suggest = "client_id"
|
|
3401
|
+
elif key == "principalId":
|
|
3402
|
+
suggest = "principal_id"
|
|
3403
|
+
elif key == "tenantId":
|
|
3404
|
+
suggest = "tenant_id"
|
|
3405
|
+
|
|
3406
|
+
if suggest:
|
|
3407
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
3408
|
+
|
|
3409
|
+
def __getitem__(self, key: str) -> Any:
|
|
3410
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
3411
|
+
return super().__getitem__(key)
|
|
3412
|
+
|
|
3413
|
+
def get(self, key: str, default = None) -> Any:
|
|
3414
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
3415
|
+
return super().get(key, default)
|
|
3416
|
+
|
|
3417
|
+
def __init__(__self__, *,
|
|
3418
|
+
client_id: str,
|
|
3419
|
+
principal_id: str,
|
|
3420
|
+
tenant_id: Optional[str] = None):
|
|
3421
|
+
"""
|
|
3422
|
+
The User Assigned Identity
|
|
3423
|
+
:param str client_id: The client id of user assigned identity.
|
|
3424
|
+
:param str principal_id: The principal id of user assigned identity.
|
|
3425
|
+
:param str tenant_id: The tenant id of user assigned identity.
|
|
3426
|
+
"""
|
|
3427
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
3428
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
3429
|
+
if tenant_id is not None:
|
|
3430
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
3431
|
+
|
|
3432
|
+
@property
|
|
3433
|
+
@pulumi.getter(name="clientId")
|
|
3434
|
+
def client_id(self) -> str:
|
|
3435
|
+
"""
|
|
3436
|
+
The client id of user assigned identity.
|
|
3437
|
+
"""
|
|
3438
|
+
return pulumi.get(self, "client_id")
|
|
3439
|
+
|
|
3440
|
+
@property
|
|
3441
|
+
@pulumi.getter(name="principalId")
|
|
3442
|
+
def principal_id(self) -> str:
|
|
3443
|
+
"""
|
|
3444
|
+
The principal id of user assigned identity.
|
|
3445
|
+
"""
|
|
3446
|
+
return pulumi.get(self, "principal_id")
|
|
3447
|
+
|
|
3448
|
+
@property
|
|
3449
|
+
@pulumi.getter(name="tenantId")
|
|
3450
|
+
def tenant_id(self) -> Optional[str]:
|
|
3451
|
+
"""
|
|
3452
|
+
The tenant id of user assigned identity.
|
|
3453
|
+
"""
|
|
3454
|
+
return pulumi.get(self, "tenant_id")
|
|
3455
|
+
|
|
3456
|
+
|
|
3457
|
+
@pulumi.output_type
|
|
3458
|
+
class VirtualNetworkProfileResponse(dict):
|
|
3459
|
+
"""
|
|
3460
|
+
The virtual network properties.
|
|
3461
|
+
"""
|
|
3462
|
+
def __init__(__self__, *,
|
|
3463
|
+
id: Optional[str] = None,
|
|
3464
|
+
subnet: Optional[str] = None):
|
|
3465
|
+
"""
|
|
3466
|
+
The virtual network properties.
|
|
3467
|
+
:param str id: The ID of the virtual network.
|
|
3468
|
+
:param str subnet: The name of the subnet.
|
|
3469
|
+
"""
|
|
3470
|
+
if id is not None:
|
|
3471
|
+
pulumi.set(__self__, "id", id)
|
|
3472
|
+
if subnet is not None:
|
|
3473
|
+
pulumi.set(__self__, "subnet", subnet)
|
|
3474
|
+
|
|
3475
|
+
@property
|
|
3476
|
+
@pulumi.getter
|
|
3477
|
+
def id(self) -> Optional[str]:
|
|
3478
|
+
"""
|
|
3479
|
+
The ID of the virtual network.
|
|
3480
|
+
"""
|
|
3481
|
+
return pulumi.get(self, "id")
|
|
3482
|
+
|
|
3483
|
+
@property
|
|
3484
|
+
@pulumi.getter
|
|
3485
|
+
def subnet(self) -> Optional[str]:
|
|
3486
|
+
"""
|
|
3487
|
+
The name of the subnet.
|
|
3488
|
+
"""
|
|
3489
|
+
return pulumi.get(self, "subnet")
|
|
3490
|
+
|
|
3491
|
+
|