pulumi-azure-native 2.47.1__py3-none-any.whl → 2.48.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 +91 -2
- pulumi_azure_native/billing/__init__.py +11 -0
- pulumi_azure_native/billing/_enums.py +71 -0
- pulumi_azure_native/billing/_inputs.py +1274 -0
- pulumi_azure_native/billing/associated_tenant.py +226 -0
- pulumi_azure_native/billing/billing_profile.py +225 -0
- pulumi_azure_native/billing/billing_role_assignment_by_billing_account.py +5 -1
- pulumi_azure_native/billing/billing_role_assignment_by_department.py +5 -1
- pulumi_azure_native/billing/billing_role_assignment_by_enrollment_account.py +5 -1
- pulumi_azure_native/billing/get_associated_tenant.py +146 -0
- pulumi_azure_native/billing/get_billing_profile.py +146 -0
- pulumi_azure_native/billing/get_billing_role_assignment_by_billing_account.py +4 -0
- pulumi_azure_native/billing/get_billing_role_assignment_by_department.py +4 -0
- pulumi_azure_native/billing/get_billing_role_assignment_by_enrollment_account.py +4 -0
- pulumi_azure_native/billing/get_invoice_section.py +151 -0
- pulumi_azure_native/billing/invoice_section.py +247 -0
- pulumi_azure_native/billing/list_billing_account_invoice_sections_by_create_subscription_permission.py +2 -2
- pulumi_azure_native/billing/outputs.py +1728 -17
- pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_billing_account.py +1 -1
- pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_department.py +1 -1
- pulumi_azure_native/billing/v20191001preview/billing_role_assignment_by_enrollment_account.py +1 -1
- pulumi_azure_native/billing/v20240401/__init__.py +23 -0
- pulumi_azure_native/billing/v20240401/_enums.py +71 -0
- pulumi_azure_native/billing/v20240401/_inputs.py +1394 -0
- pulumi_azure_native/billing/v20240401/associated_tenant.py +224 -0
- pulumi_azure_native/billing/v20240401/billing_profile.py +223 -0
- pulumi_azure_native/billing/v20240401/billing_role_assignment_by_billing_account.py +223 -0
- pulumi_azure_native/billing/v20240401/billing_role_assignment_by_department.py +244 -0
- pulumi_azure_native/billing/v20240401/billing_role_assignment_by_enrollment_account.py +244 -0
- pulumi_azure_native/billing/v20240401/get_associated_tenant.py +144 -0
- pulumi_azure_native/billing/v20240401/get_billing_profile.py +144 -0
- pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_billing_account.py +144 -0
- pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_department.py +149 -0
- pulumi_azure_native/billing/v20240401/get_billing_role_assignment_by_enrollment_account.py +149 -0
- pulumi_azure_native/billing/v20240401/get_invoice_section.py +149 -0
- pulumi_azure_native/billing/v20240401/invoice_section.py +245 -0
- pulumi_azure_native/billing/v20240401/list_billing_account_invoice_sections_by_create_subscription_permission.py +92 -0
- pulumi_azure_native/billing/v20240401/outputs.py +2305 -0
- pulumi_azure_native/containerinstance/__init__.py +3 -0
- pulumi_azure_native/containerinstance/container_group.py +3 -3
- pulumi_azure_native/containerinstance/get_container_group.py +2 -2
- pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240501preview/__init__.py +12 -0
- pulumi_azure_native/containerinstance/v20240501preview/_enums.py +127 -0
- pulumi_azure_native/containerinstance/v20240501preview/_inputs.py +2019 -0
- pulumi_azure_native/containerinstance/v20240501preview/container_group.py +808 -0
- pulumi_azure_native/containerinstance/v20240501preview/get_container_group.py +420 -0
- pulumi_azure_native/containerinstance/v20240501preview/outputs.py +2605 -0
- pulumi_azure_native/dbformysql/azure_ad_administrator.py +3 -3
- pulumi_azure_native/dbformysql/configuration.py +3 -3
- pulumi_azure_native/dbformysql/database.py +3 -3
- pulumi_azure_native/dbformysql/firewall_rule.py +3 -3
- pulumi_azure_native/dbformysql/get_azure_ad_administrator.py +2 -2
- pulumi_azure_native/dbformysql/get_configuration.py +2 -2
- pulumi_azure_native/dbformysql/get_database.py +2 -2
- pulumi_azure_native/dbformysql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbformysql/v20200701privatepreview/configuration.py +1 -1
- pulumi_azure_native/dbformysql/v20220101/azure_ad_administrator.py +1 -1
- pulumi_azure_native/dbformysql/v20220101/configuration.py +1 -1
- pulumi_azure_native/dbformysql/v20220101/database.py +1 -1
- pulumi_azure_native/dbformysql/v20220101/firewall_rule.py +1 -1
- pulumi_azure_native/dbformysql/v20230601preview/azure_ad_administrator.py +1 -1
- pulumi_azure_native/dbformysql/v20230601preview/configuration.py +1 -1
- pulumi_azure_native/dbformysql/v20230601preview/database.py +1 -1
- pulumi_azure_native/dbformysql/v20230601preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbformysql/v20230630/azure_ad_administrator.py +1 -1
- pulumi_azure_native/dbformysql/v20230630/configuration.py +1 -1
- pulumi_azure_native/dbformysql/v20230630/database.py +1 -1
- pulumi_azure_native/dbformysql/v20230630/firewall_rule.py +1 -1
- pulumi_azure_native/dbformysql/v20231230/__init__.py +8 -0
- pulumi_azure_native/dbformysql/v20231230/_enums.py +17 -0
- pulumi_azure_native/dbformysql/v20231230/azure_ad_administrator.py +331 -0
- pulumi_azure_native/dbformysql/v20231230/configuration.py +353 -0
- pulumi_azure_native/dbformysql/v20231230/database.py +243 -0
- pulumi_azure_native/dbformysql/v20231230/firewall_rule.py +245 -0
- pulumi_azure_native/dbformysql/v20231230/get_azure_ad_administrator.py +188 -0
- pulumi_azure_native/dbformysql/v20231230/get_configuration.py +266 -0
- pulumi_azure_native/dbformysql/v20231230/get_database.py +149 -0
- pulumi_azure_native/dbformysql/v20231230/get_firewall_rule.py +149 -0
- pulumi_azure_native/devcenter/__init__.py +4 -0
- pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
- pulumi_azure_native/devcenter/catalog.py +3 -3
- pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
- pulumi_azure_native/devcenter/dev_center.py +3 -3
- pulumi_azure_native/devcenter/encryption_set.py +3 -3
- pulumi_azure_native/devcenter/environment_type.py +3 -3
- pulumi_azure_native/devcenter/gallery.py +3 -3
- pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_encryption_set.py +2 -2
- pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_gallery.py +2 -2
- pulumi_azure_native/devcenter/get_network_connection.py +2 -2
- pulumi_azure_native/devcenter/get_plan.py +2 -2
- pulumi_azure_native/devcenter/get_plan_member.py +2 -2
- pulumi_azure_native/devcenter/get_pool.py +2 -2
- pulumi_azure_native/devcenter/get_project.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_image_definition_build_details.py +213 -0
- pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_project_inherited_settings.py +2 -2
- pulumi_azure_native/devcenter/get_schedule.py +2 -2
- pulumi_azure_native/devcenter/list_skus_by_project.py +4 -0
- pulumi_azure_native/devcenter/network_connection.py +3 -3
- pulumi_azure_native/devcenter/outputs.py +226 -0
- pulumi_azure_native/devcenter/plan.py +3 -3
- pulumi_azure_native/devcenter/plan_member.py +3 -3
- pulumi_azure_native/devcenter/pool.py +3 -3
- pulumi_azure_native/devcenter/project.py +3 -3
- pulumi_azure_native/devcenter/project_catalog.py +3 -3
- pulumi_azure_native/devcenter/project_environment_type.py +3 -3
- pulumi_azure_native/devcenter/schedule.py +3 -3
- pulumi_azure_native/devcenter/v20221111preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20230401/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230401/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20230401/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20230401/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230401/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230401/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20230401/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20230401/pool.py +1 -1
- pulumi_azure_native/devcenter/v20230401/project.py +1 -1
- pulumi_azure_native/devcenter/v20230401/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230401/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/pool.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/project.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20230801preview/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/pool.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/project.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20231001preview/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20240201/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240201/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240201/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20240201/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240201/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240201/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20240201/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20240201/pool.py +1 -1
- pulumi_azure_native/devcenter/v20240201/project.py +1 -1
- pulumi_azure_native/devcenter/v20240201/project_catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240201/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240201/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/encryption_set.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/plan.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/plan_member.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/pool.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/project.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/project_catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240501preview/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/attached_network_by_dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/dev_box_definition.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/dev_center.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/encryption_set.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/gallery.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/network_connection.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/plan.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/plan_member.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/pool.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/project.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/project_catalog.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/project_environment_type.py +1 -1
- pulumi_azure_native/devcenter/v20240601preview/schedule.py +1 -1
- pulumi_azure_native/devcenter/v20240701preview/__init__.py +48 -0
- pulumi_azure_native/devcenter/v20240701preview/_enums.py +209 -0
- pulumi_azure_native/devcenter/v20240701preview/_inputs.py +595 -0
- pulumi_azure_native/devcenter/v20240701preview/attached_network_by_dev_center.py +255 -0
- pulumi_azure_native/devcenter/v20240701preview/catalog.py +363 -0
- pulumi_azure_native/devcenter/v20240701preview/dev_box_definition.py +413 -0
- pulumi_azure_native/devcenter/v20240701preview/dev_center.py +447 -0
- pulumi_azure_native/devcenter/v20240701preview/encryption_set.py +342 -0
- pulumi_azure_native/devcenter/v20240701preview/environment_type.py +253 -0
- pulumi_azure_native/devcenter/v20240701preview/gallery.py +225 -0
- pulumi_azure_native/devcenter/v20240701preview/get_attached_network_by_dev_center.py +188 -0
- pulumi_azure_native/devcenter/v20240701preview/get_catalog.py +253 -0
- pulumi_azure_native/devcenter/v20240701preview/get_catalog_sync_error_details.py +110 -0
- pulumi_azure_native/devcenter/v20240701preview/get_customization_task_error_details.py +89 -0
- pulumi_azure_native/devcenter/v20240701preview/get_dev_box_definition.py +266 -0
- pulumi_azure_native/devcenter/v20240701preview/get_dev_center.py +261 -0
- pulumi_azure_native/devcenter/v20240701preview/get_encryption_set.py +201 -0
- pulumi_azure_native/devcenter/v20240701preview/get_environment_definition_error_details.py +89 -0
- pulumi_azure_native/devcenter/v20240701preview/get_environment_type.py +162 -0
- pulumi_azure_native/devcenter/v20240701preview/get_gallery.py +149 -0
- pulumi_azure_native/devcenter/v20240701preview/get_network_connection.py +261 -0
- pulumi_azure_native/devcenter/v20240701preview/get_plan.py +170 -0
- pulumi_azure_native/devcenter/v20240701preview/get_plan_member.py +175 -0
- pulumi_azure_native/devcenter/v20240701preview/get_pool.py +344 -0
- pulumi_azure_native/devcenter/v20240701preview/get_project.py +248 -0
- pulumi_azure_native/devcenter/v20240701preview/get_project_catalog.py +253 -0
- pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_environment_definition_error_details.py +89 -0
- pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_image_definition_build_details.py +211 -0
- pulumi_azure_native/devcenter/v20240701preview/get_project_catalog_sync_error_details.py +110 -0
- pulumi_azure_native/devcenter/v20240701preview/get_project_environment_type.py +253 -0
- pulumi_azure_native/devcenter/v20240701preview/get_project_inherited_settings.py +92 -0
- pulumi_azure_native/devcenter/v20240701preview/get_schedule.py +224 -0
- pulumi_azure_native/devcenter/v20240701preview/list_skus_by_project.py +92 -0
- pulumi_azure_native/devcenter/v20240701preview/network_connection.py +448 -0
- pulumi_azure_native/devcenter/v20240701preview/outputs.py +1673 -0
- pulumi_azure_native/devcenter/v20240701preview/plan.py +263 -0
- pulumi_azure_native/devcenter/v20240701preview/plan_member.py +283 -0
- pulumi_azure_native/devcenter/v20240701preview/pool.py +608 -0
- pulumi_azure_native/devcenter/v20240701preview/project.py +418 -0
- pulumi_azure_native/devcenter/v20240701preview/project_catalog.py +363 -0
- pulumi_azure_native/devcenter/v20240701preview/project_environment_type.py +439 -0
- pulumi_azure_native/devcenter/v20240701preview/schedule.py +434 -0
- pulumi_azure_native/fabric/__init__.py +20 -0
- pulumi_azure_native/fabric/_enums.py +19 -0
- pulumi_azure_native/fabric/_inputs.py +78 -0
- pulumi_azure_native/fabric/fabric_capacity.py +306 -0
- pulumi_azure_native/fabric/get_fabric_capacity.py +198 -0
- pulumi_azure_native/fabric/outputs.py +183 -0
- pulumi_azure_native/fabric/v20231101/__init__.py +12 -0
- pulumi_azure_native/fabric/v20231101/_enums.py +19 -0
- pulumi_azure_native/fabric/v20231101/_inputs.py +78 -0
- pulumi_azure_native/fabric/v20231101/fabric_capacity.py +304 -0
- pulumi_azure_native/fabric/v20231101/get_fabric_capacity.py +196 -0
- pulumi_azure_native/fabric/v20231101/outputs.py +183 -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/__init__.py +13 -0
- pulumi_azure_native/kubernetes/v20240701preview/_enums.py +76 -0
- pulumi_azure_native/kubernetes/v20240701preview/_inputs.py +401 -0
- pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py +788 -0
- pulumi_azure_native/kubernetes/v20240701preview/get_connected_cluster.py +469 -0
- pulumi_azure_native/kubernetes/v20240701preview/list_connected_cluster_user_credential.py +103 -0
- pulumi_azure_native/kubernetes/v20240701preview/outputs.py +827 -0
- pulumi_azure_native/loadtestservice/__init__.py +7 -0
- pulumi_azure_native/loadtestservice/get_load_test.py +2 -2
- pulumi_azure_native/loadtestservice/get_load_test_mapping.py +159 -0
- pulumi_azure_native/loadtestservice/get_load_test_profile_mapping.py +159 -0
- pulumi_azure_native/loadtestservice/load_test.py +3 -3
- pulumi_azure_native/loadtestservice/load_test_mapping.py +253 -0
- pulumi_azure_native/loadtestservice/load_test_profile_mapping.py +253 -0
- pulumi_azure_native/loadtestservice/v20211201preview/load_test.py +1 -1
- pulumi_azure_native/loadtestservice/v20221201/load_test.py +1 -1
- pulumi_azure_native/loadtestservice/v20231201preview/__init__.py +16 -0
- pulumi_azure_native/loadtestservice/v20231201preview/_enums.py +34 -0
- pulumi_azure_native/loadtestservice/v20231201preview/_inputs.py +137 -0
- pulumi_azure_native/loadtestservice/v20231201preview/get_load_test.py +209 -0
- pulumi_azure_native/loadtestservice/v20231201preview/get_load_test_mapping.py +157 -0
- pulumi_azure_native/loadtestservice/v20231201preview/get_load_test_profile_mapping.py +157 -0
- pulumi_azure_native/loadtestservice/v20231201preview/load_test.py +331 -0
- pulumi_azure_native/loadtestservice/v20231201preview/load_test_mapping.py +251 -0
- pulumi_azure_native/loadtestservice/v20231201preview/load_test_profile_mapping.py +251 -0
- pulumi_azure_native/loadtestservice/v20231201preview/outputs.py +364 -0
- pulumi_azure_native/portal/_inputs.py +61 -202
- pulumi_azure_native/portal/outputs.py +51 -192
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/RECORD +295 -180
- {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-2.47.1.dist-info → pulumi_azure_native-2.48.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._enums import *
|
|
13
|
+
|
|
14
|
+
__all__ = [
|
|
15
|
+
'EncryptionPropertiesIdentityResponse',
|
|
16
|
+
'EncryptionPropertiesResponse',
|
|
17
|
+
'ManagedServiceIdentityResponse',
|
|
18
|
+
'SystemDataResponse',
|
|
19
|
+
'UserAssignedIdentityResponse',
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
@pulumi.output_type
|
|
23
|
+
class EncryptionPropertiesIdentityResponse(dict):
|
|
24
|
+
"""
|
|
25
|
+
All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
26
|
+
"""
|
|
27
|
+
@staticmethod
|
|
28
|
+
def __key_warning(key: str):
|
|
29
|
+
suggest = None
|
|
30
|
+
if key == "resourceId":
|
|
31
|
+
suggest = "resource_id"
|
|
32
|
+
|
|
33
|
+
if suggest:
|
|
34
|
+
pulumi.log.warn(f"Key '{key}' not found in EncryptionPropertiesIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
35
|
+
|
|
36
|
+
def __getitem__(self, key: str) -> Any:
|
|
37
|
+
EncryptionPropertiesIdentityResponse.__key_warning(key)
|
|
38
|
+
return super().__getitem__(key)
|
|
39
|
+
|
|
40
|
+
def get(self, key: str, default = None) -> Any:
|
|
41
|
+
EncryptionPropertiesIdentityResponse.__key_warning(key)
|
|
42
|
+
return super().get(key, default)
|
|
43
|
+
|
|
44
|
+
def __init__(__self__, *,
|
|
45
|
+
resource_id: Optional[str] = None,
|
|
46
|
+
type: Optional[str] = None):
|
|
47
|
+
"""
|
|
48
|
+
All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
49
|
+
:param str resource_id: User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
50
|
+
:param str type: Managed identity type to use for accessing encryption key Url.
|
|
51
|
+
"""
|
|
52
|
+
if resource_id is not None:
|
|
53
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
|
54
|
+
if type is not None:
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter(name="resourceId")
|
|
59
|
+
def resource_id(self) -> Optional[str]:
|
|
60
|
+
"""
|
|
61
|
+
User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "resource_id")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter
|
|
67
|
+
def type(self) -> Optional[str]:
|
|
68
|
+
"""
|
|
69
|
+
Managed identity type to use for accessing encryption key Url.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "type")
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
@pulumi.output_type
|
|
75
|
+
class EncryptionPropertiesResponse(dict):
|
|
76
|
+
"""
|
|
77
|
+
Key and identity details for Customer Managed Key encryption of load test resource.
|
|
78
|
+
"""
|
|
79
|
+
@staticmethod
|
|
80
|
+
def __key_warning(key: str):
|
|
81
|
+
suggest = None
|
|
82
|
+
if key == "keyUrl":
|
|
83
|
+
suggest = "key_url"
|
|
84
|
+
|
|
85
|
+
if suggest:
|
|
86
|
+
pulumi.log.warn(f"Key '{key}' not found in EncryptionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
87
|
+
|
|
88
|
+
def __getitem__(self, key: str) -> Any:
|
|
89
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
90
|
+
return super().__getitem__(key)
|
|
91
|
+
|
|
92
|
+
def get(self, key: str, default = None) -> Any:
|
|
93
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
94
|
+
return super().get(key, default)
|
|
95
|
+
|
|
96
|
+
def __init__(__self__, *,
|
|
97
|
+
identity: Optional['outputs.EncryptionPropertiesIdentityResponse'] = None,
|
|
98
|
+
key_url: Optional[str] = None):
|
|
99
|
+
"""
|
|
100
|
+
Key and identity details for Customer Managed Key encryption of load test resource.
|
|
101
|
+
:param 'EncryptionPropertiesIdentityResponse' identity: All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
102
|
+
:param str key_url: key encryption key Url, versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
|
|
103
|
+
"""
|
|
104
|
+
if identity is not None:
|
|
105
|
+
pulumi.set(__self__, "identity", identity)
|
|
106
|
+
if key_url is not None:
|
|
107
|
+
pulumi.set(__self__, "key_url", key_url)
|
|
108
|
+
|
|
109
|
+
@property
|
|
110
|
+
@pulumi.getter
|
|
111
|
+
def identity(self) -> Optional['outputs.EncryptionPropertiesIdentityResponse']:
|
|
112
|
+
"""
|
|
113
|
+
All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
114
|
+
"""
|
|
115
|
+
return pulumi.get(self, "identity")
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
@pulumi.getter(name="keyUrl")
|
|
119
|
+
def key_url(self) -> Optional[str]:
|
|
120
|
+
"""
|
|
121
|
+
key encryption key Url, versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
|
|
122
|
+
"""
|
|
123
|
+
return pulumi.get(self, "key_url")
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
@pulumi.output_type
|
|
127
|
+
class ManagedServiceIdentityResponse(dict):
|
|
128
|
+
"""
|
|
129
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
130
|
+
"""
|
|
131
|
+
@staticmethod
|
|
132
|
+
def __key_warning(key: str):
|
|
133
|
+
suggest = None
|
|
134
|
+
if key == "principalId":
|
|
135
|
+
suggest = "principal_id"
|
|
136
|
+
elif key == "tenantId":
|
|
137
|
+
suggest = "tenant_id"
|
|
138
|
+
elif key == "userAssignedIdentities":
|
|
139
|
+
suggest = "user_assigned_identities"
|
|
140
|
+
|
|
141
|
+
if suggest:
|
|
142
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
143
|
+
|
|
144
|
+
def __getitem__(self, key: str) -> Any:
|
|
145
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
146
|
+
return super().__getitem__(key)
|
|
147
|
+
|
|
148
|
+
def get(self, key: str, default = None) -> Any:
|
|
149
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
150
|
+
return super().get(key, default)
|
|
151
|
+
|
|
152
|
+
def __init__(__self__, *,
|
|
153
|
+
principal_id: str,
|
|
154
|
+
tenant_id: str,
|
|
155
|
+
type: str,
|
|
156
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
|
|
157
|
+
"""
|
|
158
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
159
|
+
:param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
160
|
+
:param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
161
|
+
:param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
162
|
+
:param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
163
|
+
"""
|
|
164
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
165
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
166
|
+
pulumi.set(__self__, "type", type)
|
|
167
|
+
if user_assigned_identities is not None:
|
|
168
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
169
|
+
|
|
170
|
+
@property
|
|
171
|
+
@pulumi.getter(name="principalId")
|
|
172
|
+
def principal_id(self) -> str:
|
|
173
|
+
"""
|
|
174
|
+
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
175
|
+
"""
|
|
176
|
+
return pulumi.get(self, "principal_id")
|
|
177
|
+
|
|
178
|
+
@property
|
|
179
|
+
@pulumi.getter(name="tenantId")
|
|
180
|
+
def tenant_id(self) -> str:
|
|
181
|
+
"""
|
|
182
|
+
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
183
|
+
"""
|
|
184
|
+
return pulumi.get(self, "tenant_id")
|
|
185
|
+
|
|
186
|
+
@property
|
|
187
|
+
@pulumi.getter
|
|
188
|
+
def type(self) -> str:
|
|
189
|
+
"""
|
|
190
|
+
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
191
|
+
"""
|
|
192
|
+
return pulumi.get(self, "type")
|
|
193
|
+
|
|
194
|
+
@property
|
|
195
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
196
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
|
|
197
|
+
"""
|
|
198
|
+
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
199
|
+
"""
|
|
200
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
@pulumi.output_type
|
|
204
|
+
class SystemDataResponse(dict):
|
|
205
|
+
"""
|
|
206
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
207
|
+
"""
|
|
208
|
+
@staticmethod
|
|
209
|
+
def __key_warning(key: str):
|
|
210
|
+
suggest = None
|
|
211
|
+
if key == "createdAt":
|
|
212
|
+
suggest = "created_at"
|
|
213
|
+
elif key == "createdBy":
|
|
214
|
+
suggest = "created_by"
|
|
215
|
+
elif key == "createdByType":
|
|
216
|
+
suggest = "created_by_type"
|
|
217
|
+
elif key == "lastModifiedAt":
|
|
218
|
+
suggest = "last_modified_at"
|
|
219
|
+
elif key == "lastModifiedBy":
|
|
220
|
+
suggest = "last_modified_by"
|
|
221
|
+
elif key == "lastModifiedByType":
|
|
222
|
+
suggest = "last_modified_by_type"
|
|
223
|
+
|
|
224
|
+
if suggest:
|
|
225
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
226
|
+
|
|
227
|
+
def __getitem__(self, key: str) -> Any:
|
|
228
|
+
SystemDataResponse.__key_warning(key)
|
|
229
|
+
return super().__getitem__(key)
|
|
230
|
+
|
|
231
|
+
def get(self, key: str, default = None) -> Any:
|
|
232
|
+
SystemDataResponse.__key_warning(key)
|
|
233
|
+
return super().get(key, default)
|
|
234
|
+
|
|
235
|
+
def __init__(__self__, *,
|
|
236
|
+
created_at: Optional[str] = None,
|
|
237
|
+
created_by: Optional[str] = None,
|
|
238
|
+
created_by_type: Optional[str] = None,
|
|
239
|
+
last_modified_at: Optional[str] = None,
|
|
240
|
+
last_modified_by: Optional[str] = None,
|
|
241
|
+
last_modified_by_type: Optional[str] = None):
|
|
242
|
+
"""
|
|
243
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
244
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
245
|
+
:param str created_by: The identity that created the resource.
|
|
246
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
247
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
248
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
249
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
250
|
+
"""
|
|
251
|
+
if created_at is not None:
|
|
252
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
253
|
+
if created_by is not None:
|
|
254
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
255
|
+
if created_by_type is not None:
|
|
256
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
257
|
+
if last_modified_at is not None:
|
|
258
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
259
|
+
if last_modified_by is not None:
|
|
260
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
261
|
+
if last_modified_by_type is not None:
|
|
262
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
263
|
+
|
|
264
|
+
@property
|
|
265
|
+
@pulumi.getter(name="createdAt")
|
|
266
|
+
def created_at(self) -> Optional[str]:
|
|
267
|
+
"""
|
|
268
|
+
The timestamp of resource creation (UTC).
|
|
269
|
+
"""
|
|
270
|
+
return pulumi.get(self, "created_at")
|
|
271
|
+
|
|
272
|
+
@property
|
|
273
|
+
@pulumi.getter(name="createdBy")
|
|
274
|
+
def created_by(self) -> Optional[str]:
|
|
275
|
+
"""
|
|
276
|
+
The identity that created the resource.
|
|
277
|
+
"""
|
|
278
|
+
return pulumi.get(self, "created_by")
|
|
279
|
+
|
|
280
|
+
@property
|
|
281
|
+
@pulumi.getter(name="createdByType")
|
|
282
|
+
def created_by_type(self) -> Optional[str]:
|
|
283
|
+
"""
|
|
284
|
+
The type of identity that created the resource.
|
|
285
|
+
"""
|
|
286
|
+
return pulumi.get(self, "created_by_type")
|
|
287
|
+
|
|
288
|
+
@property
|
|
289
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
290
|
+
def last_modified_at(self) -> Optional[str]:
|
|
291
|
+
"""
|
|
292
|
+
The timestamp of resource last modification (UTC)
|
|
293
|
+
"""
|
|
294
|
+
return pulumi.get(self, "last_modified_at")
|
|
295
|
+
|
|
296
|
+
@property
|
|
297
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
298
|
+
def last_modified_by(self) -> Optional[str]:
|
|
299
|
+
"""
|
|
300
|
+
The identity that last modified the resource.
|
|
301
|
+
"""
|
|
302
|
+
return pulumi.get(self, "last_modified_by")
|
|
303
|
+
|
|
304
|
+
@property
|
|
305
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
306
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
307
|
+
"""
|
|
308
|
+
The type of identity that last modified the resource.
|
|
309
|
+
"""
|
|
310
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
@pulumi.output_type
|
|
314
|
+
class UserAssignedIdentityResponse(dict):
|
|
315
|
+
"""
|
|
316
|
+
User assigned identity properties
|
|
317
|
+
"""
|
|
318
|
+
@staticmethod
|
|
319
|
+
def __key_warning(key: str):
|
|
320
|
+
suggest = None
|
|
321
|
+
if key == "clientId":
|
|
322
|
+
suggest = "client_id"
|
|
323
|
+
elif key == "principalId":
|
|
324
|
+
suggest = "principal_id"
|
|
325
|
+
|
|
326
|
+
if suggest:
|
|
327
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
328
|
+
|
|
329
|
+
def __getitem__(self, key: str) -> Any:
|
|
330
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
331
|
+
return super().__getitem__(key)
|
|
332
|
+
|
|
333
|
+
def get(self, key: str, default = None) -> Any:
|
|
334
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
335
|
+
return super().get(key, default)
|
|
336
|
+
|
|
337
|
+
def __init__(__self__, *,
|
|
338
|
+
client_id: str,
|
|
339
|
+
principal_id: str):
|
|
340
|
+
"""
|
|
341
|
+
User assigned identity properties
|
|
342
|
+
:param str client_id: The client ID of the assigned identity.
|
|
343
|
+
:param str principal_id: The principal ID of the assigned identity.
|
|
344
|
+
"""
|
|
345
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
346
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
347
|
+
|
|
348
|
+
@property
|
|
349
|
+
@pulumi.getter(name="clientId")
|
|
350
|
+
def client_id(self) -> str:
|
|
351
|
+
"""
|
|
352
|
+
The client ID of the assigned identity.
|
|
353
|
+
"""
|
|
354
|
+
return pulumi.get(self, "client_id")
|
|
355
|
+
|
|
356
|
+
@property
|
|
357
|
+
@pulumi.getter(name="principalId")
|
|
358
|
+
def principal_id(self) -> str:
|
|
359
|
+
"""
|
|
360
|
+
The principal ID of the assigned identity.
|
|
361
|
+
"""
|
|
362
|
+
return pulumi.get(self, "principal_id")
|
|
363
|
+
|
|
364
|
+
|
|
@@ -13,12 +13,9 @@ from ._enums import *
|
|
|
13
13
|
__all__ = [
|
|
14
14
|
'ConsoleCreatePropertiesArgs',
|
|
15
15
|
'DashboardLensArgs',
|
|
16
|
+
'DashboardPartMetadataArgs',
|
|
16
17
|
'DashboardPartsPositionArgs',
|
|
17
18
|
'DashboardPartsArgs',
|
|
18
|
-
'MarkdownPartMetadataContentArgs',
|
|
19
|
-
'MarkdownPartMetadataSettingsSettingsArgs',
|
|
20
|
-
'MarkdownPartMetadataSettingsArgs',
|
|
21
|
-
'MarkdownPartMetadataArgs',
|
|
22
19
|
'StorageProfileArgs',
|
|
23
20
|
'TerminalSettingsArgs',
|
|
24
21
|
'UserPropertiesArgs',
|
|
@@ -133,6 +130,61 @@ class DashboardLensArgs:
|
|
|
133
130
|
pulumi.set(self, "metadata", value)
|
|
134
131
|
|
|
135
132
|
|
|
133
|
+
@pulumi.input_type
|
|
134
|
+
class DashboardPartMetadataArgs:
|
|
135
|
+
def __init__(__self__, *,
|
|
136
|
+
type: pulumi.Input[str],
|
|
137
|
+
inputs: Optional[pulumi.Input[Sequence[Any]]] = None,
|
|
138
|
+
settings: Optional[pulumi.Input[Mapping[str, Any]]] = None):
|
|
139
|
+
"""
|
|
140
|
+
A dashboard part metadata.
|
|
141
|
+
:param pulumi.Input[str] type: The type of dashboard part.
|
|
142
|
+
:param pulumi.Input[Sequence[Any]] inputs: Inputs to dashboard part.
|
|
143
|
+
:param pulumi.Input[Mapping[str, Any]] settings: Settings of dashboard part.
|
|
144
|
+
"""
|
|
145
|
+
pulumi.set(__self__, "type", type)
|
|
146
|
+
if inputs is not None:
|
|
147
|
+
pulumi.set(__self__, "inputs", inputs)
|
|
148
|
+
if settings is not None:
|
|
149
|
+
pulumi.set(__self__, "settings", settings)
|
|
150
|
+
|
|
151
|
+
@property
|
|
152
|
+
@pulumi.getter
|
|
153
|
+
def type(self) -> pulumi.Input[str]:
|
|
154
|
+
"""
|
|
155
|
+
The type of dashboard part.
|
|
156
|
+
"""
|
|
157
|
+
return pulumi.get(self, "type")
|
|
158
|
+
|
|
159
|
+
@type.setter
|
|
160
|
+
def type(self, value: pulumi.Input[str]):
|
|
161
|
+
pulumi.set(self, "type", value)
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter
|
|
165
|
+
def inputs(self) -> Optional[pulumi.Input[Sequence[Any]]]:
|
|
166
|
+
"""
|
|
167
|
+
Inputs to dashboard part.
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "inputs")
|
|
170
|
+
|
|
171
|
+
@inputs.setter
|
|
172
|
+
def inputs(self, value: Optional[pulumi.Input[Sequence[Any]]]):
|
|
173
|
+
pulumi.set(self, "inputs", value)
|
|
174
|
+
|
|
175
|
+
@property
|
|
176
|
+
@pulumi.getter
|
|
177
|
+
def settings(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
|
178
|
+
"""
|
|
179
|
+
Settings of dashboard part.
|
|
180
|
+
"""
|
|
181
|
+
return pulumi.get(self, "settings")
|
|
182
|
+
|
|
183
|
+
@settings.setter
|
|
184
|
+
def settings(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
|
185
|
+
pulumi.set(self, "settings", value)
|
|
186
|
+
|
|
187
|
+
|
|
136
188
|
@pulumi.input_type
|
|
137
189
|
class DashboardPartsPositionArgs:
|
|
138
190
|
def __init__(__self__, *,
|
|
@@ -221,11 +273,11 @@ class DashboardPartsPositionArgs:
|
|
|
221
273
|
class DashboardPartsArgs:
|
|
222
274
|
def __init__(__self__, *,
|
|
223
275
|
position: pulumi.Input['DashboardPartsPositionArgs'],
|
|
224
|
-
metadata: Optional[pulumi.Input['
|
|
276
|
+
metadata: Optional[pulumi.Input['DashboardPartMetadataArgs']] = None):
|
|
225
277
|
"""
|
|
226
278
|
A dashboard part.
|
|
227
279
|
:param pulumi.Input['DashboardPartsPositionArgs'] position: The dashboard's part position.
|
|
228
|
-
:param pulumi.Input['
|
|
280
|
+
:param pulumi.Input['DashboardPartMetadataArgs'] metadata: The dashboard's part metadata.
|
|
229
281
|
"""
|
|
230
282
|
pulumi.set(__self__, "position", position)
|
|
231
283
|
if metadata is not None:
|
|
@@ -245,210 +297,17 @@ class DashboardPartsArgs:
|
|
|
245
297
|
|
|
246
298
|
@property
|
|
247
299
|
@pulumi.getter
|
|
248
|
-
def metadata(self) -> Optional[pulumi.Input['
|
|
300
|
+
def metadata(self) -> Optional[pulumi.Input['DashboardPartMetadataArgs']]:
|
|
249
301
|
"""
|
|
250
|
-
The dashboard
|
|
302
|
+
The dashboard's part metadata.
|
|
251
303
|
"""
|
|
252
304
|
return pulumi.get(self, "metadata")
|
|
253
305
|
|
|
254
306
|
@metadata.setter
|
|
255
|
-
def metadata(self, value: Optional[pulumi.Input['
|
|
307
|
+
def metadata(self, value: Optional[pulumi.Input['DashboardPartMetadataArgs']]):
|
|
256
308
|
pulumi.set(self, "metadata", value)
|
|
257
309
|
|
|
258
310
|
|
|
259
|
-
@pulumi.input_type
|
|
260
|
-
class MarkdownPartMetadataContentArgs:
|
|
261
|
-
def __init__(__self__, *,
|
|
262
|
-
settings: Optional[pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs']] = None):
|
|
263
|
-
"""
|
|
264
|
-
The content of markdown part.
|
|
265
|
-
:param pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs'] settings: The setting of the content of markdown part.
|
|
266
|
-
"""
|
|
267
|
-
if settings is not None:
|
|
268
|
-
pulumi.set(__self__, "settings", settings)
|
|
269
|
-
|
|
270
|
-
@property
|
|
271
|
-
@pulumi.getter
|
|
272
|
-
def settings(self) -> Optional[pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs']]:
|
|
273
|
-
"""
|
|
274
|
-
The setting of the content of markdown part.
|
|
275
|
-
"""
|
|
276
|
-
return pulumi.get(self, "settings")
|
|
277
|
-
|
|
278
|
-
@settings.setter
|
|
279
|
-
def settings(self, value: Optional[pulumi.Input['MarkdownPartMetadataSettingsSettingsArgs']]):
|
|
280
|
-
pulumi.set(self, "settings", value)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
@pulumi.input_type
|
|
284
|
-
class MarkdownPartMetadataSettingsSettingsArgs:
|
|
285
|
-
def __init__(__self__, *,
|
|
286
|
-
content: Optional[pulumi.Input[str]] = None,
|
|
287
|
-
markdown_source: Optional[pulumi.Input[int]] = None,
|
|
288
|
-
markdown_uri: Optional[pulumi.Input[str]] = None,
|
|
289
|
-
subtitle: Optional[pulumi.Input[str]] = None,
|
|
290
|
-
title: Optional[pulumi.Input[str]] = None):
|
|
291
|
-
"""
|
|
292
|
-
The setting of the content of markdown part.
|
|
293
|
-
:param pulumi.Input[str] content: The content of the markdown part.
|
|
294
|
-
:param pulumi.Input[int] markdown_source: The source of the content of the markdown part.
|
|
295
|
-
:param pulumi.Input[str] markdown_uri: The uri of markdown content.
|
|
296
|
-
:param pulumi.Input[str] subtitle: The subtitle of the markdown part.
|
|
297
|
-
:param pulumi.Input[str] title: The title of the markdown part.
|
|
298
|
-
"""
|
|
299
|
-
if content is not None:
|
|
300
|
-
pulumi.set(__self__, "content", content)
|
|
301
|
-
if markdown_source is not None:
|
|
302
|
-
pulumi.set(__self__, "markdown_source", markdown_source)
|
|
303
|
-
if markdown_uri is not None:
|
|
304
|
-
pulumi.set(__self__, "markdown_uri", markdown_uri)
|
|
305
|
-
if subtitle is not None:
|
|
306
|
-
pulumi.set(__self__, "subtitle", subtitle)
|
|
307
|
-
if title is not None:
|
|
308
|
-
pulumi.set(__self__, "title", title)
|
|
309
|
-
|
|
310
|
-
@property
|
|
311
|
-
@pulumi.getter
|
|
312
|
-
def content(self) -> Optional[pulumi.Input[str]]:
|
|
313
|
-
"""
|
|
314
|
-
The content of the markdown part.
|
|
315
|
-
"""
|
|
316
|
-
return pulumi.get(self, "content")
|
|
317
|
-
|
|
318
|
-
@content.setter
|
|
319
|
-
def content(self, value: Optional[pulumi.Input[str]]):
|
|
320
|
-
pulumi.set(self, "content", value)
|
|
321
|
-
|
|
322
|
-
@property
|
|
323
|
-
@pulumi.getter(name="markdownSource")
|
|
324
|
-
def markdown_source(self) -> Optional[pulumi.Input[int]]:
|
|
325
|
-
"""
|
|
326
|
-
The source of the content of the markdown part.
|
|
327
|
-
"""
|
|
328
|
-
return pulumi.get(self, "markdown_source")
|
|
329
|
-
|
|
330
|
-
@markdown_source.setter
|
|
331
|
-
def markdown_source(self, value: Optional[pulumi.Input[int]]):
|
|
332
|
-
pulumi.set(self, "markdown_source", value)
|
|
333
|
-
|
|
334
|
-
@property
|
|
335
|
-
@pulumi.getter(name="markdownUri")
|
|
336
|
-
def markdown_uri(self) -> Optional[pulumi.Input[str]]:
|
|
337
|
-
"""
|
|
338
|
-
The uri of markdown content.
|
|
339
|
-
"""
|
|
340
|
-
return pulumi.get(self, "markdown_uri")
|
|
341
|
-
|
|
342
|
-
@markdown_uri.setter
|
|
343
|
-
def markdown_uri(self, value: Optional[pulumi.Input[str]]):
|
|
344
|
-
pulumi.set(self, "markdown_uri", value)
|
|
345
|
-
|
|
346
|
-
@property
|
|
347
|
-
@pulumi.getter
|
|
348
|
-
def subtitle(self) -> Optional[pulumi.Input[str]]:
|
|
349
|
-
"""
|
|
350
|
-
The subtitle of the markdown part.
|
|
351
|
-
"""
|
|
352
|
-
return pulumi.get(self, "subtitle")
|
|
353
|
-
|
|
354
|
-
@subtitle.setter
|
|
355
|
-
def subtitle(self, value: Optional[pulumi.Input[str]]):
|
|
356
|
-
pulumi.set(self, "subtitle", value)
|
|
357
|
-
|
|
358
|
-
@property
|
|
359
|
-
@pulumi.getter
|
|
360
|
-
def title(self) -> Optional[pulumi.Input[str]]:
|
|
361
|
-
"""
|
|
362
|
-
The title of the markdown part.
|
|
363
|
-
"""
|
|
364
|
-
return pulumi.get(self, "title")
|
|
365
|
-
|
|
366
|
-
@title.setter
|
|
367
|
-
def title(self, value: Optional[pulumi.Input[str]]):
|
|
368
|
-
pulumi.set(self, "title", value)
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
@pulumi.input_type
|
|
372
|
-
class MarkdownPartMetadataSettingsArgs:
|
|
373
|
-
def __init__(__self__, *,
|
|
374
|
-
content: Optional[pulumi.Input['MarkdownPartMetadataContentArgs']] = None):
|
|
375
|
-
"""
|
|
376
|
-
Markdown part settings.
|
|
377
|
-
:param pulumi.Input['MarkdownPartMetadataContentArgs'] content: The content of markdown part.
|
|
378
|
-
"""
|
|
379
|
-
if content is not None:
|
|
380
|
-
pulumi.set(__self__, "content", content)
|
|
381
|
-
|
|
382
|
-
@property
|
|
383
|
-
@pulumi.getter
|
|
384
|
-
def content(self) -> Optional[pulumi.Input['MarkdownPartMetadataContentArgs']]:
|
|
385
|
-
"""
|
|
386
|
-
The content of markdown part.
|
|
387
|
-
"""
|
|
388
|
-
return pulumi.get(self, "content")
|
|
389
|
-
|
|
390
|
-
@content.setter
|
|
391
|
-
def content(self, value: Optional[pulumi.Input['MarkdownPartMetadataContentArgs']]):
|
|
392
|
-
pulumi.set(self, "content", value)
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
@pulumi.input_type
|
|
396
|
-
class MarkdownPartMetadataArgs:
|
|
397
|
-
def __init__(__self__, *,
|
|
398
|
-
type: pulumi.Input[str],
|
|
399
|
-
inputs: Optional[pulumi.Input[Sequence[Any]]] = None,
|
|
400
|
-
settings: Optional[pulumi.Input['MarkdownPartMetadataSettingsArgs']] = None):
|
|
401
|
-
"""
|
|
402
|
-
Markdown part metadata.
|
|
403
|
-
:param pulumi.Input[str] type: The type of dashboard part.
|
|
404
|
-
Expected value is 'Extension/HubsExtension/PartType/MarkdownPart'.
|
|
405
|
-
:param pulumi.Input[Sequence[Any]] inputs: Input to dashboard part.
|
|
406
|
-
:param pulumi.Input['MarkdownPartMetadataSettingsArgs'] settings: Markdown part settings.
|
|
407
|
-
"""
|
|
408
|
-
pulumi.set(__self__, "type", 'Extension/HubsExtension/PartType/MarkdownPart')
|
|
409
|
-
if inputs is not None:
|
|
410
|
-
pulumi.set(__self__, "inputs", inputs)
|
|
411
|
-
if settings is not None:
|
|
412
|
-
pulumi.set(__self__, "settings", settings)
|
|
413
|
-
|
|
414
|
-
@property
|
|
415
|
-
@pulumi.getter
|
|
416
|
-
def type(self) -> pulumi.Input[str]:
|
|
417
|
-
"""
|
|
418
|
-
The type of dashboard part.
|
|
419
|
-
Expected value is 'Extension/HubsExtension/PartType/MarkdownPart'.
|
|
420
|
-
"""
|
|
421
|
-
return pulumi.get(self, "type")
|
|
422
|
-
|
|
423
|
-
@type.setter
|
|
424
|
-
def type(self, value: pulumi.Input[str]):
|
|
425
|
-
pulumi.set(self, "type", value)
|
|
426
|
-
|
|
427
|
-
@property
|
|
428
|
-
@pulumi.getter
|
|
429
|
-
def inputs(self) -> Optional[pulumi.Input[Sequence[Any]]]:
|
|
430
|
-
"""
|
|
431
|
-
Input to dashboard part.
|
|
432
|
-
"""
|
|
433
|
-
return pulumi.get(self, "inputs")
|
|
434
|
-
|
|
435
|
-
@inputs.setter
|
|
436
|
-
def inputs(self, value: Optional[pulumi.Input[Sequence[Any]]]):
|
|
437
|
-
pulumi.set(self, "inputs", value)
|
|
438
|
-
|
|
439
|
-
@property
|
|
440
|
-
@pulumi.getter
|
|
441
|
-
def settings(self) -> Optional[pulumi.Input['MarkdownPartMetadataSettingsArgs']]:
|
|
442
|
-
"""
|
|
443
|
-
Markdown part settings.
|
|
444
|
-
"""
|
|
445
|
-
return pulumi.get(self, "settings")
|
|
446
|
-
|
|
447
|
-
@settings.setter
|
|
448
|
-
def settings(self, value: Optional[pulumi.Input['MarkdownPartMetadataSettingsArgs']]):
|
|
449
|
-
pulumi.set(self, "settings", value)
|
|
450
|
-
|
|
451
|
-
|
|
452
311
|
@pulumi.input_type
|
|
453
312
|
class StorageProfileArgs:
|
|
454
313
|
def __init__(__self__, *,
|