pulumi-azure-native 2.87.0a1739193742__py3-none-any.whl → 2.88.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 +77 -1
- pulumi_azure_native/authorization/__init__.py +2 -0
- pulumi_azure_native/authorization/_enums.py +88 -0
- pulumi_azure_native/authorization/_inputs.py +1431 -43
- pulumi_azure_native/authorization/get_role_management_policy.py +247 -0
- pulumi_azure_native/authorization/outputs.py +312 -0
- pulumi_azure_native/authorization/role_management_policy.py +332 -0
- pulumi_azure_native/authorization/v20201001/__init__.py +4 -0
- pulumi_azure_native/authorization/v20201001/_enums.py +78 -0
- pulumi_azure_native/authorization/v20201001/_inputs.py +1134 -0
- pulumi_azure_native/authorization/v20201001/get_role_management_policy.py +241 -0
- pulumi_azure_native/authorization/v20201001/outputs.py +89 -0
- pulumi_azure_native/authorization/v20201001/role_management_policy.py +326 -0
- pulumi_azure_native/authorization/v20201001preview/__init__.py +4 -0
- pulumi_azure_native/authorization/v20201001preview/_enums.py +78 -0
- pulumi_azure_native/authorization/v20201001preview/_inputs.py +1134 -0
- pulumi_azure_native/authorization/v20201001preview/get_role_management_policy.py +241 -0
- pulumi_azure_native/authorization/v20201001preview/outputs.py +959 -0
- pulumi_azure_native/authorization/v20201001preview/role_management_policy.py +326 -0
- pulumi_azure_native/authorization/v20240201preview/__init__.py +4 -0
- pulumi_azure_native/authorization/v20240201preview/_enums.py +96 -0
- pulumi_azure_native/authorization/v20240201preview/_inputs.py +1390 -0
- pulumi_azure_native/authorization/v20240201preview/get_role_management_policy.py +241 -0
- pulumi_azure_native/authorization/v20240201preview/outputs.py +89 -0
- pulumi_azure_native/authorization/v20240201preview/role_management_policy.py +326 -0
- pulumi_azure_native/authorization/v20240901preview/__init__.py +4 -0
- pulumi_azure_native/authorization/v20240901preview/_enums.py +96 -0
- pulumi_azure_native/authorization/v20240901preview/_inputs.py +1410 -0
- pulumi_azure_native/authorization/v20240901preview/get_role_management_policy.py +241 -0
- pulumi_azure_native/authorization/v20240901preview/outputs.py +89 -0
- pulumi_azure_native/authorization/v20240901preview/role_management_policy.py +326 -0
- pulumi_azure_native/communication/__init__.py +3 -0
- pulumi_azure_native/communication/communication_service.py +3 -3
- pulumi_azure_native/communication/domain.py +3 -3
- pulumi_azure_native/communication/email_service.py +3 -3
- pulumi_azure_native/communication/get_communication_service.py +2 -2
- pulumi_azure_native/communication/get_domain.py +2 -2
- pulumi_azure_native/communication/get_email_service.py +2 -2
- pulumi_azure_native/communication/get_sender_username.py +2 -2
- pulumi_azure_native/communication/get_suppression_list.py +4 -0
- pulumi_azure_native/communication/get_suppression_list_address.py +4 -0
- pulumi_azure_native/communication/list_communication_service_keys.py +2 -2
- pulumi_azure_native/communication/sender_username.py +3 -3
- pulumi_azure_native/communication/suppression_list.py +5 -1
- pulumi_azure_native/communication/suppression_list_address.py +5 -1
- pulumi_azure_native/communication/v20220701preview/domain.py +1 -1
- pulumi_azure_native/communication/v20230331/communication_service.py +1 -1
- pulumi_azure_native/communication/v20230331/domain.py +1 -1
- pulumi_azure_native/communication/v20230331/email_service.py +1 -1
- pulumi_azure_native/communication/v20230331/sender_username.py +1 -1
- pulumi_azure_native/communication/v20230401/communication_service.py +1 -1
- pulumi_azure_native/communication/v20230401/domain.py +1 -1
- pulumi_azure_native/communication/v20230401/email_service.py +1 -1
- pulumi_azure_native/communication/v20230401/sender_username.py +1 -1
- pulumi_azure_native/communication/v20230401preview/communication_service.py +1 -1
- pulumi_azure_native/communication/v20230401preview/domain.py +1 -1
- pulumi_azure_native/communication/v20230401preview/email_service.py +1 -1
- pulumi_azure_native/communication/v20230401preview/sender_username.py +1 -1
- pulumi_azure_native/communication/v20230601preview/communication_service.py +1 -1
- pulumi_azure_native/communication/v20230601preview/domain.py +1 -1
- pulumi_azure_native/communication/v20230601preview/email_service.py +1 -1
- pulumi_azure_native/communication/v20230601preview/sender_username.py +1 -1
- pulumi_azure_native/communication/v20230601preview/suppression_list.py +1 -1
- pulumi_azure_native/communication/v20230601preview/suppression_list_address.py +1 -1
- pulumi_azure_native/communication/v20240901preview/__init__.py +25 -0
- pulumi_azure_native/communication/v20240901preview/_enums.py +38 -0
- pulumi_azure_native/communication/v20240901preview/_inputs.py +79 -0
- pulumi_azure_native/communication/v20240901preview/communication_service.py +367 -0
- pulumi_azure_native/communication/v20240901preview/domain.py +368 -0
- pulumi_azure_native/communication/v20240901preview/email_service.py +267 -0
- pulumi_azure_native/communication/v20240901preview/get_communication_service.py +269 -0
- pulumi_azure_native/communication/v20240901preview/get_domain.py +275 -0
- pulumi_azure_native/communication/v20240901preview/get_email_service.py +185 -0
- pulumi_azure_native/communication/v20240901preview/get_sender_username.py +197 -0
- pulumi_azure_native/communication/v20240901preview/get_smtp_username.py +177 -0
- pulumi_azure_native/communication/v20240901preview/get_suppression_list.py +197 -0
- pulumi_azure_native/communication/v20240901preview/get_suppression_list_address.py +231 -0
- pulumi_azure_native/communication/v20240901preview/list_communication_service_keys.py +128 -0
- pulumi_azure_native/communication/v20240901preview/outputs.py +560 -0
- pulumi_azure_native/communication/v20240901preview/sender_username.py +290 -0
- pulumi_azure_native/communication/v20240901preview/smtp_username.py +278 -0
- pulumi_azure_native/communication/v20240901preview/suppression_list.py +270 -0
- pulumi_azure_native/communication/v20240901preview/suppression_list_address.py +369 -0
- pulumi_azure_native/datafactory/_inputs.py +43 -43
- pulumi_azure_native/datafactory/outputs.py +34 -34
- pulumi_azure_native/datafactory/v20180601/_inputs.py +43 -43
- pulumi_azure_native/datafactory/v20180601/outputs.py +34 -34
- pulumi_azure_native/eventgrid/__init__.py +3 -0
- pulumi_azure_native/eventgrid/ca_certificate.py +3 -3
- pulumi_azure_native/eventgrid/channel.py +3 -3
- pulumi_azure_native/eventgrid/client.py +3 -3
- pulumi_azure_native/eventgrid/client_group.py +3 -3
- pulumi_azure_native/eventgrid/domain.py +3 -3
- pulumi_azure_native/eventgrid/domain_event_subscription.py +3 -3
- pulumi_azure_native/eventgrid/domain_topic.py +3 -3
- pulumi_azure_native/eventgrid/domain_topic_event_subscription.py +3 -3
- pulumi_azure_native/eventgrid/event_subscription.py +3 -3
- pulumi_azure_native/eventgrid/get_ca_certificate.py +2 -2
- pulumi_azure_native/eventgrid/get_channel.py +2 -2
- pulumi_azure_native/eventgrid/get_channel_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_client.py +2 -2
- pulumi_azure_native/eventgrid/get_client_group.py +2 -2
- pulumi_azure_native/eventgrid/get_domain.py +2 -2
- pulumi_azure_native/eventgrid/get_domain_event_subscription.py +2 -2
- pulumi_azure_native/eventgrid/get_domain_event_subscription_delivery_attributes.py +2 -2
- pulumi_azure_native/eventgrid/get_domain_event_subscription_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_domain_topic.py +2 -2
- pulumi_azure_native/eventgrid/get_domain_topic_event_subscription.py +2 -2
- pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_delivery_attributes.py +2 -2
- pulumi_azure_native/eventgrid/get_domain_topic_event_subscription_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_event_subscription.py +2 -2
- pulumi_azure_native/eventgrid/get_event_subscription_delivery_attributes.py +2 -2
- pulumi_azure_native/eventgrid/get_event_subscription_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_namespace.py +2 -2
- pulumi_azure_native/eventgrid/get_namespace_topic.py +2 -2
- pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription.py +2 -2
- pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_delivery_attributes.py +2 -2
- pulumi_azure_native/eventgrid/get_namespace_topic_event_subscription_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_partner_configuration.py +2 -2
- pulumi_azure_native/eventgrid/get_partner_namespace.py +2 -2
- pulumi_azure_native/eventgrid/get_partner_registration.py +2 -2
- pulumi_azure_native/eventgrid/get_partner_topic.py +2 -2
- pulumi_azure_native/eventgrid/get_partner_topic_event_subscription.py +2 -2
- pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_delivery_attributes.py +2 -2
- pulumi_azure_native/eventgrid/get_partner_topic_event_subscription_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_permission_binding.py +2 -2
- pulumi_azure_native/eventgrid/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/eventgrid/get_system_topic.py +2 -2
- pulumi_azure_native/eventgrid/get_system_topic_event_subscription.py +2 -2
- pulumi_azure_native/eventgrid/get_system_topic_event_subscription_delivery_attributes.py +2 -2
- pulumi_azure_native/eventgrid/get_system_topic_event_subscription_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_topic.py +2 -2
- pulumi_azure_native/eventgrid/get_topic_event_subscription.py +2 -2
- pulumi_azure_native/eventgrid/get_topic_event_subscription_delivery_attributes.py +2 -2
- pulumi_azure_native/eventgrid/get_topic_event_subscription_full_url.py +2 -2
- pulumi_azure_native/eventgrid/get_topic_space.py +2 -2
- pulumi_azure_native/eventgrid/list_domain_shared_access_keys.py +2 -2
- pulumi_azure_native/eventgrid/list_namespace_shared_access_keys.py +2 -2
- pulumi_azure_native/eventgrid/list_namespace_topic_shared_access_keys.py +2 -2
- pulumi_azure_native/eventgrid/list_partner_namespace_shared_access_keys.py +2 -2
- pulumi_azure_native/eventgrid/list_topic_shared_access_keys.py +2 -2
- pulumi_azure_native/eventgrid/namespace.py +3 -3
- pulumi_azure_native/eventgrid/namespace_topic.py +3 -3
- pulumi_azure_native/eventgrid/namespace_topic_event_subscription.py +3 -3
- pulumi_azure_native/eventgrid/partner_configuration.py +3 -3
- pulumi_azure_native/eventgrid/partner_namespace.py +3 -3
- pulumi_azure_native/eventgrid/partner_registration.py +3 -3
- pulumi_azure_native/eventgrid/partner_topic.py +3 -3
- pulumi_azure_native/eventgrid/partner_topic_event_subscription.py +3 -3
- pulumi_azure_native/eventgrid/permission_binding.py +3 -3
- pulumi_azure_native/eventgrid/private_endpoint_connection.py +3 -3
- pulumi_azure_native/eventgrid/system_topic.py +3 -3
- pulumi_azure_native/eventgrid/system_topic_event_subscription.py +3 -3
- pulumi_azure_native/eventgrid/topic.py +3 -3
- pulumi_azure_native/eventgrid/topic_event_subscription.py +3 -3
- pulumi_azure_native/eventgrid/topic_space.py +3 -3
- pulumi_azure_native/eventgrid/v20200401preview/domain.py +1 -1
- pulumi_azure_native/eventgrid/v20200401preview/topic.py +1 -1
- pulumi_azure_native/eventgrid/v20211015preview/partner_registration.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/channel.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/domain.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/domain_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/domain_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/domain_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/partner_configuration.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/partner_namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/partner_registration.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/partner_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/partner_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/system_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/system_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/topic.py +1 -1
- pulumi_azure_native/eventgrid/v20220615/topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/ca_certificate.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/channel.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/client.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/client_group.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/domain.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/domain_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/domain_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/domain_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/namespace_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/namespace_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/partner_configuration.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/partner_namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/partner_registration.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/partner_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/partner_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/permission_binding.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/system_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/system_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/topic.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20230601preview/topic_space.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/ca_certificate.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/channel.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/client.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/client_group.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/domain.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/domain_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/domain_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/domain_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/namespace_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/namespace_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/partner_configuration.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/partner_namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/partner_registration.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/partner_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/partner_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/permission_binding.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/system_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/system_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/topic.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20231215preview/topic_space.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/ca_certificate.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/channel.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/client.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/client_group.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/domain.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/domain_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/domain_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/domain_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/namespace_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/namespace_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/partner_configuration.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/partner_namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/partner_registration.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/partner_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/partner_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/permission_binding.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/system_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/system_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/topic.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20240601preview/topic_space.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/ca_certificate.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/channel.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/client.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/client_group.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/domain.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/domain_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/domain_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/domain_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/namespace_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/namespace_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/partner_configuration.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/partner_namespace.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/partner_registration.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/partner_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/partner_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/permission_binding.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/system_topic.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/system_topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/topic.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/topic_event_subscription.py +1 -1
- pulumi_azure_native/eventgrid/v20241215preview/topic_space.py +1 -1
- pulumi_azure_native/eventgrid/v20250215/__init__.py +78 -0
- pulumi_azure_native/eventgrid/v20250215/_enums.py +405 -0
- pulumi_azure_native/eventgrid/v20250215/_inputs.py +6881 -0
- pulumi_azure_native/eventgrid/v20250215/ca_certificate.py +278 -0
- pulumi_azure_native/eventgrid/v20250215/channel.py +370 -0
- pulumi_azure_native/eventgrid/v20250215/client.py +359 -0
- pulumi_azure_native/eventgrid/v20250215/client_group.py +262 -0
- pulumi_azure_native/eventgrid/v20250215/domain.py +664 -0
- pulumi_azure_native/eventgrid/v20250215/domain_event_subscription.py +493 -0
- pulumi_azure_native/eventgrid/v20250215/domain_topic.py +200 -0
- pulumi_azure_native/eventgrid/v20250215/domain_topic_event_subscription.py +514 -0
- pulumi_azure_native/eventgrid/v20250215/event_subscription.py +472 -0
- pulumi_azure_native/eventgrid/v20250215/get_ca_certificate.py +205 -0
- pulumi_azure_native/eventgrid/v20250215/get_channel.py +220 -0
- pulumi_azure_native/eventgrid/v20250215/get_channel_full_url.py +92 -0
- pulumi_azure_native/eventgrid/v20250215/get_client.py +221 -0
- pulumi_azure_native/eventgrid/v20250215/get_client_group.py +178 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain.py +381 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription.py +293 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_delivery_attributes.py +93 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain_event_subscription_full_url.py +92 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain_topic.py +149 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription.py +299 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_delivery_attributes.py +99 -0
- pulumi_azure_native/eventgrid/v20250215/get_domain_topic_event_subscription_full_url.py +98 -0
- pulumi_azure_native/eventgrid/v20250215/get_event_subscription.py +287 -0
- pulumi_azure_native/eventgrid/v20250215/get_event_subscription_delivery_attributes.py +87 -0
- pulumi_azure_native/eventgrid/v20250215/get_event_subscription_full_url.py +86 -0
- pulumi_azure_native/eventgrid/v20250215/get_namespace.py +302 -0
- pulumi_azure_native/eventgrid/v20250215/get_namespace_topic.py +192 -0
- pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription.py +211 -0
- pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_delivery_attributes.py +99 -0
- pulumi_azure_native/eventgrid/v20250215/get_namespace_topic_event_subscription_full_url.py +98 -0
- pulumi_azure_native/eventgrid/v20250215/get_partner_configuration.py +179 -0
- pulumi_azure_native/eventgrid/v20250215/get_partner_namespace.py +286 -0
- pulumi_azure_native/eventgrid/v20250215/get_partner_registration.py +186 -0
- pulumi_azure_native/eventgrid/v20250215/get_partner_topic.py +285 -0
- pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription.py +293 -0
- pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_delivery_attributes.py +93 -0
- pulumi_azure_native/eventgrid/v20250215/get_partner_topic_event_subscription_full_url.py +92 -0
- pulumi_azure_native/eventgrid/v20250215/get_permission_binding.py +207 -0
- pulumi_azure_native/eventgrid/v20250215/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/eventgrid/v20250215/get_system_topic.py +227 -0
- pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription.py +293 -0
- pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_delivery_attributes.py +93 -0
- pulumi_azure_native/eventgrid/v20250215/get_system_topic_event_subscription_full_url.py +92 -0
- pulumi_azure_native/eventgrid/v20250215/get_topic.py +341 -0
- pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription.py +293 -0
- pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_delivery_attributes.py +93 -0
- pulumi_azure_native/eventgrid/v20250215/get_topic_event_subscription_full_url.py +92 -0
- pulumi_azure_native/eventgrid/v20250215/get_topic_space.py +181 -0
- pulumi_azure_native/eventgrid/v20250215/list_domain_shared_access_keys.py +100 -0
- pulumi_azure_native/eventgrid/v20250215/list_namespace_shared_access_keys.py +100 -0
- pulumi_azure_native/eventgrid/v20250215/list_namespace_topic_shared_access_keys.py +106 -0
- pulumi_azure_native/eventgrid/v20250215/list_partner_namespace_shared_access_keys.py +100 -0
- pulumi_azure_native/eventgrid/v20250215/list_topic_shared_access_keys.py +100 -0
- pulumi_azure_native/eventgrid/v20250215/namespace.py +520 -0
- pulumi_azure_native/eventgrid/v20250215/namespace_topic.py +296 -0
- pulumi_azure_native/eventgrid/v20250215/namespace_topic_event_subscription.py +339 -0
- pulumi_azure_native/eventgrid/v20250215/outputs.py +5875 -0
- pulumi_azure_native/eventgrid/v20250215/partner_configuration.py +267 -0
- pulumi_azure_native/eventgrid/v20250215/partner_namespace.py +457 -0
- pulumi_azure_native/eventgrid/v20250215/partner_registration.py +270 -0
- pulumi_azure_native/eventgrid/v20250215/partner_topic.py +479 -0
- pulumi_azure_native/eventgrid/v20250215/partner_topic_event_subscription.py +493 -0
- pulumi_azure_native/eventgrid/v20250215/permission_binding.py +325 -0
- pulumi_azure_native/eventgrid/v20250215/private_endpoint_connection.py +317 -0
- pulumi_azure_native/eventgrid/v20250215/system_topic.py +336 -0
- pulumi_azure_native/eventgrid/v20250215/system_topic_event_subscription.py +493 -0
- pulumi_azure_native/eventgrid/v20250215/topic.py +550 -0
- pulumi_azure_native/eventgrid/v20250215/topic_event_subscription.py +493 -0
- pulumi_azure_native/eventgrid/v20250215/topic_space.py +274 -0
- pulumi_azure_native/machinelearningservices/v20241001preview/_inputs.py +13 -78
- pulumi_azure_native/machinelearningservices/v20241001preview/outputs.py +10 -69
- pulumi_azure_native/netapp/__init__.py +1 -0
- pulumi_azure_native/netapp/get_account_key_vault_status.py +131 -0
- pulumi_azure_native/netapp/outputs.py +36 -0
- pulumi_azure_native/netapp/v20240901/__init__.py +1 -0
- pulumi_azure_native/netapp/v20240901/get_account_change_key_vault_information.py +129 -0
- pulumi_azure_native/netapp/v20240901/outputs.py +36 -0
- pulumi_azure_native/netapp/v20240901preview/__init__.py +1 -0
- pulumi_azure_native/netapp/v20240901preview/get_account_key_vault_status.py +129 -0
- pulumi_azure_native/netapp/v20240901preview/outputs.py +36 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/sovereign/_enums.py +15 -15
- pulumi_azure_native/sovereign/_inputs.py +129 -129
- pulumi_azure_native/sovereign/get_landing_zone_account_operation.py +5 -5
- pulumi_azure_native/sovereign/get_landing_zone_configuration_operation.py +4 -4
- pulumi_azure_native/sovereign/get_landing_zone_registration_operation.py +7 -7
- pulumi_azure_native/sovereign/landing_zone_account_operation.py +5 -5
- pulumi_azure_native/sovereign/landing_zone_configuration_operation.py +3 -3
- pulumi_azure_native/sovereign/landing_zone_registration_operation.py +8 -8
- pulumi_azure_native/sovereign/outputs.py +100 -100
- pulumi_azure_native/sovereign/v20250227preview/_enums.py +15 -15
- pulumi_azure_native/sovereign/v20250227preview/_inputs.py +129 -129
- pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_account_operation.py +5 -5
- pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_configuration_operation.py +4 -4
- pulumi_azure_native/sovereign/v20250227preview/get_landing_zone_registration_operation.py +7 -7
- pulumi_azure_native/sovereign/v20250227preview/landing_zone_account_operation.py +5 -5
- pulumi_azure_native/sovereign/v20250227preview/landing_zone_configuration_operation.py +3 -3
- pulumi_azure_native/sovereign/v20250227preview/landing_zone_registration_operation.py +8 -8
- pulumi_azure_native/sovereign/v20250227preview/outputs.py +100 -100
- pulumi_azure_native/videoindexer/__init__.py +3 -0
- pulumi_azure_native/videoindexer/account.py +3 -3
- pulumi_azure_native/videoindexer/get_account.py +2 -2
- pulumi_azure_native/videoindexer/v20220801/account.py +1 -1
- pulumi_azure_native/videoindexer/v20240101/account.py +1 -1
- pulumi_azure_native/videoindexer/v20240401preview/account.py +1 -1
- pulumi_azure_native/videoindexer/v20240601preview/account.py +1 -1
- pulumi_azure_native/videoindexer/v20240923preview/account.py +1 -1
- pulumi_azure_native/videoindexer/v20250101/__init__.py +12 -0
- pulumi_azure_native/videoindexer/v20250101/_enums.py +19 -0
- pulumi_azure_native/videoindexer/v20250101/_inputs.py +195 -0
- pulumi_azure_native/videoindexer/v20250101/account.py +398 -0
- pulumi_azure_native/videoindexer/v20250101/get_account.py +283 -0
- pulumi_azure_native/videoindexer/v20250101/outputs.py +373 -0
- pulumi_azure_native/web/container_app.py +3 -3
- pulumi_azure_native/web/get_container_app.py +2 -2
- pulumi_azure_native/web/list_container_app_secrets.py +2 -2
- pulumi_azure_native/web/v20230101/container_app.py +1 -1
- pulumi_azure_native/web/v20231201/container_app.py +1 -1
- pulumi_azure_native/web/v20240401/__init__.py +0 -3
- pulumi_azure_native/web/v20240401/_enums.py +0 -20
- pulumi_azure_native/web/v20240401/_inputs.py +43 -1574
- pulumi_azure_native/web/v20240401/outputs.py +19 -1212
- pulumi_azure_native/weightsandbiases/__init__.py +20 -0
- pulumi_azure_native/weightsandbiases/_enums.py +84 -0
- pulumi_azure_native/weightsandbiases/_inputs.py +658 -0
- pulumi_azure_native/weightsandbiases/get_instance.py +187 -0
- pulumi_azure_native/weightsandbiases/instance.py +289 -0
- pulumi_azure_native/weightsandbiases/outputs.py +747 -0
- pulumi_azure_native/weightsandbiases/v20240918preview/__init__.py +12 -0
- pulumi_azure_native/weightsandbiases/v20240918preview/_enums.py +84 -0
- pulumi_azure_native/weightsandbiases/v20240918preview/_inputs.py +658 -0
- pulumi_azure_native/weightsandbiases/v20240918preview/get_instance.py +185 -0
- pulumi_azure_native/weightsandbiases/v20240918preview/instance.py +287 -0
- pulumi_azure_native/weightsandbiases/v20240918preview/outputs.py +747 -0
- {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/RECORD +412 -285
- pulumi_azure_native/web/v20240401/container_app.py +0 -364
- pulumi_azure_native/web/v20240401/get_container_app.py +0 -241
- pulumi_azure_native/web/v20240401/list_container_app_secrets.py +0 -81
- {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.87.0a1739193742.dist-info → pulumi_azure_native-2.88.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,560 @@
|
|
|
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
|
+
'DnsRecordResponse',
|
|
21
|
+
'DomainPropertiesResponseVerificationRecords',
|
|
22
|
+
'DomainPropertiesResponseVerificationStates',
|
|
23
|
+
'ManagedServiceIdentityResponse',
|
|
24
|
+
'SystemDataResponse',
|
|
25
|
+
'UserAssignedIdentityResponse',
|
|
26
|
+
'VerificationStatusRecordResponse',
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
@pulumi.output_type
|
|
30
|
+
class DnsRecordResponse(dict):
|
|
31
|
+
"""
|
|
32
|
+
A class that represents a VerificationStatus record.
|
|
33
|
+
"""
|
|
34
|
+
def __init__(__self__, *,
|
|
35
|
+
name: str,
|
|
36
|
+
ttl: int,
|
|
37
|
+
type: str,
|
|
38
|
+
value: str):
|
|
39
|
+
"""
|
|
40
|
+
A class that represents a VerificationStatus record.
|
|
41
|
+
:param str name: Name of the DNS record.
|
|
42
|
+
:param int ttl: Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
43
|
+
:param str type: Type of the DNS record. Example: TXT
|
|
44
|
+
:param str value: Value of the DNS record.
|
|
45
|
+
"""
|
|
46
|
+
pulumi.set(__self__, "name", name)
|
|
47
|
+
pulumi.set(__self__, "ttl", ttl)
|
|
48
|
+
pulumi.set(__self__, "type", type)
|
|
49
|
+
pulumi.set(__self__, "value", value)
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def name(self) -> str:
|
|
54
|
+
"""
|
|
55
|
+
Name of the DNS record.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "name")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def ttl(self) -> int:
|
|
62
|
+
"""
|
|
63
|
+
Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "ttl")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def type(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
Type of the DNS record. Example: TXT
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "type")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def value(self) -> str:
|
|
78
|
+
"""
|
|
79
|
+
Value of the DNS record.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "value")
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
@pulumi.output_type
|
|
85
|
+
class DomainPropertiesResponseVerificationRecords(dict):
|
|
86
|
+
"""
|
|
87
|
+
List of DnsRecord
|
|
88
|
+
"""
|
|
89
|
+
@staticmethod
|
|
90
|
+
def __key_warning(key: str):
|
|
91
|
+
suggest = None
|
|
92
|
+
if key == "dKIM":
|
|
93
|
+
suggest = "d_kim"
|
|
94
|
+
elif key == "dKIM2":
|
|
95
|
+
suggest = "d_kim2"
|
|
96
|
+
elif key == "dMARC":
|
|
97
|
+
suggest = "d_marc"
|
|
98
|
+
elif key == "sPF":
|
|
99
|
+
suggest = "s_pf"
|
|
100
|
+
|
|
101
|
+
if suggest:
|
|
102
|
+
pulumi.log.warn(f"Key '{key}' not found in DomainPropertiesResponseVerificationRecords. Access the value via the '{suggest}' property getter instead.")
|
|
103
|
+
|
|
104
|
+
def __getitem__(self, key: str) -> Any:
|
|
105
|
+
DomainPropertiesResponseVerificationRecords.__key_warning(key)
|
|
106
|
+
return super().__getitem__(key)
|
|
107
|
+
|
|
108
|
+
def get(self, key: str, default = None) -> Any:
|
|
109
|
+
DomainPropertiesResponseVerificationRecords.__key_warning(key)
|
|
110
|
+
return super().get(key, default)
|
|
111
|
+
|
|
112
|
+
def __init__(__self__, *,
|
|
113
|
+
d_kim: Optional['outputs.DnsRecordResponse'] = None,
|
|
114
|
+
d_kim2: Optional['outputs.DnsRecordResponse'] = None,
|
|
115
|
+
d_marc: Optional['outputs.DnsRecordResponse'] = None,
|
|
116
|
+
domain: Optional['outputs.DnsRecordResponse'] = None,
|
|
117
|
+
s_pf: Optional['outputs.DnsRecordResponse'] = None):
|
|
118
|
+
"""
|
|
119
|
+
List of DnsRecord
|
|
120
|
+
:param 'DnsRecordResponse' d_kim: A class that represents a VerificationStatus record.
|
|
121
|
+
:param 'DnsRecordResponse' d_kim2: A class that represents a VerificationStatus record.
|
|
122
|
+
:param 'DnsRecordResponse' d_marc: A class that represents a VerificationStatus record.
|
|
123
|
+
:param 'DnsRecordResponse' domain: A class that represents a VerificationStatus record.
|
|
124
|
+
:param 'DnsRecordResponse' s_pf: A class that represents a VerificationStatus record.
|
|
125
|
+
"""
|
|
126
|
+
if d_kim is not None:
|
|
127
|
+
pulumi.set(__self__, "d_kim", d_kim)
|
|
128
|
+
if d_kim2 is not None:
|
|
129
|
+
pulumi.set(__self__, "d_kim2", d_kim2)
|
|
130
|
+
if d_marc is not None:
|
|
131
|
+
pulumi.set(__self__, "d_marc", d_marc)
|
|
132
|
+
if domain is not None:
|
|
133
|
+
pulumi.set(__self__, "domain", domain)
|
|
134
|
+
if s_pf is not None:
|
|
135
|
+
pulumi.set(__self__, "s_pf", s_pf)
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="dKIM")
|
|
139
|
+
def d_kim(self) -> Optional['outputs.DnsRecordResponse']:
|
|
140
|
+
"""
|
|
141
|
+
A class that represents a VerificationStatus record.
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "d_kim")
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter(name="dKIM2")
|
|
147
|
+
def d_kim2(self) -> Optional['outputs.DnsRecordResponse']:
|
|
148
|
+
"""
|
|
149
|
+
A class that represents a VerificationStatus record.
|
|
150
|
+
"""
|
|
151
|
+
return pulumi.get(self, "d_kim2")
|
|
152
|
+
|
|
153
|
+
@property
|
|
154
|
+
@pulumi.getter(name="dMARC")
|
|
155
|
+
def d_marc(self) -> Optional['outputs.DnsRecordResponse']:
|
|
156
|
+
"""
|
|
157
|
+
A class that represents a VerificationStatus record.
|
|
158
|
+
"""
|
|
159
|
+
return pulumi.get(self, "d_marc")
|
|
160
|
+
|
|
161
|
+
@property
|
|
162
|
+
@pulumi.getter
|
|
163
|
+
def domain(self) -> Optional['outputs.DnsRecordResponse']:
|
|
164
|
+
"""
|
|
165
|
+
A class that represents a VerificationStatus record.
|
|
166
|
+
"""
|
|
167
|
+
return pulumi.get(self, "domain")
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="sPF")
|
|
171
|
+
def s_pf(self) -> Optional['outputs.DnsRecordResponse']:
|
|
172
|
+
"""
|
|
173
|
+
A class that represents a VerificationStatus record.
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "s_pf")
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
@pulumi.output_type
|
|
179
|
+
class DomainPropertiesResponseVerificationStates(dict):
|
|
180
|
+
"""
|
|
181
|
+
List of VerificationStatusRecord
|
|
182
|
+
"""
|
|
183
|
+
@staticmethod
|
|
184
|
+
def __key_warning(key: str):
|
|
185
|
+
suggest = None
|
|
186
|
+
if key == "dKIM":
|
|
187
|
+
suggest = "d_kim"
|
|
188
|
+
elif key == "dKIM2":
|
|
189
|
+
suggest = "d_kim2"
|
|
190
|
+
elif key == "dMARC":
|
|
191
|
+
suggest = "d_marc"
|
|
192
|
+
elif key == "sPF":
|
|
193
|
+
suggest = "s_pf"
|
|
194
|
+
|
|
195
|
+
if suggest:
|
|
196
|
+
pulumi.log.warn(f"Key '{key}' not found in DomainPropertiesResponseVerificationStates. Access the value via the '{suggest}' property getter instead.")
|
|
197
|
+
|
|
198
|
+
def __getitem__(self, key: str) -> Any:
|
|
199
|
+
DomainPropertiesResponseVerificationStates.__key_warning(key)
|
|
200
|
+
return super().__getitem__(key)
|
|
201
|
+
|
|
202
|
+
def get(self, key: str, default = None) -> Any:
|
|
203
|
+
DomainPropertiesResponseVerificationStates.__key_warning(key)
|
|
204
|
+
return super().get(key, default)
|
|
205
|
+
|
|
206
|
+
def __init__(__self__, *,
|
|
207
|
+
d_kim: Optional['outputs.VerificationStatusRecordResponse'] = None,
|
|
208
|
+
d_kim2: Optional['outputs.VerificationStatusRecordResponse'] = None,
|
|
209
|
+
d_marc: Optional['outputs.VerificationStatusRecordResponse'] = None,
|
|
210
|
+
domain: Optional['outputs.VerificationStatusRecordResponse'] = None,
|
|
211
|
+
s_pf: Optional['outputs.VerificationStatusRecordResponse'] = None):
|
|
212
|
+
"""
|
|
213
|
+
List of VerificationStatusRecord
|
|
214
|
+
:param 'VerificationStatusRecordResponse' d_kim: A class that represents a VerificationStatus record.
|
|
215
|
+
:param 'VerificationStatusRecordResponse' d_kim2: A class that represents a VerificationStatus record.
|
|
216
|
+
:param 'VerificationStatusRecordResponse' d_marc: A class that represents a VerificationStatus record.
|
|
217
|
+
:param 'VerificationStatusRecordResponse' domain: A class that represents a VerificationStatus record.
|
|
218
|
+
:param 'VerificationStatusRecordResponse' s_pf: A class that represents a VerificationStatus record.
|
|
219
|
+
"""
|
|
220
|
+
if d_kim is not None:
|
|
221
|
+
pulumi.set(__self__, "d_kim", d_kim)
|
|
222
|
+
if d_kim2 is not None:
|
|
223
|
+
pulumi.set(__self__, "d_kim2", d_kim2)
|
|
224
|
+
if d_marc is not None:
|
|
225
|
+
pulumi.set(__self__, "d_marc", d_marc)
|
|
226
|
+
if domain is not None:
|
|
227
|
+
pulumi.set(__self__, "domain", domain)
|
|
228
|
+
if s_pf is not None:
|
|
229
|
+
pulumi.set(__self__, "s_pf", s_pf)
|
|
230
|
+
|
|
231
|
+
@property
|
|
232
|
+
@pulumi.getter(name="dKIM")
|
|
233
|
+
def d_kim(self) -> Optional['outputs.VerificationStatusRecordResponse']:
|
|
234
|
+
"""
|
|
235
|
+
A class that represents a VerificationStatus record.
|
|
236
|
+
"""
|
|
237
|
+
return pulumi.get(self, "d_kim")
|
|
238
|
+
|
|
239
|
+
@property
|
|
240
|
+
@pulumi.getter(name="dKIM2")
|
|
241
|
+
def d_kim2(self) -> Optional['outputs.VerificationStatusRecordResponse']:
|
|
242
|
+
"""
|
|
243
|
+
A class that represents a VerificationStatus record.
|
|
244
|
+
"""
|
|
245
|
+
return pulumi.get(self, "d_kim2")
|
|
246
|
+
|
|
247
|
+
@property
|
|
248
|
+
@pulumi.getter(name="dMARC")
|
|
249
|
+
def d_marc(self) -> Optional['outputs.VerificationStatusRecordResponse']:
|
|
250
|
+
"""
|
|
251
|
+
A class that represents a VerificationStatus record.
|
|
252
|
+
"""
|
|
253
|
+
return pulumi.get(self, "d_marc")
|
|
254
|
+
|
|
255
|
+
@property
|
|
256
|
+
@pulumi.getter
|
|
257
|
+
def domain(self) -> Optional['outputs.VerificationStatusRecordResponse']:
|
|
258
|
+
"""
|
|
259
|
+
A class that represents a VerificationStatus record.
|
|
260
|
+
"""
|
|
261
|
+
return pulumi.get(self, "domain")
|
|
262
|
+
|
|
263
|
+
@property
|
|
264
|
+
@pulumi.getter(name="sPF")
|
|
265
|
+
def s_pf(self) -> Optional['outputs.VerificationStatusRecordResponse']:
|
|
266
|
+
"""
|
|
267
|
+
A class that represents a VerificationStatus record.
|
|
268
|
+
"""
|
|
269
|
+
return pulumi.get(self, "s_pf")
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
@pulumi.output_type
|
|
273
|
+
class ManagedServiceIdentityResponse(dict):
|
|
274
|
+
"""
|
|
275
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
276
|
+
"""
|
|
277
|
+
@staticmethod
|
|
278
|
+
def __key_warning(key: str):
|
|
279
|
+
suggest = None
|
|
280
|
+
if key == "principalId":
|
|
281
|
+
suggest = "principal_id"
|
|
282
|
+
elif key == "tenantId":
|
|
283
|
+
suggest = "tenant_id"
|
|
284
|
+
elif key == "userAssignedIdentities":
|
|
285
|
+
suggest = "user_assigned_identities"
|
|
286
|
+
|
|
287
|
+
if suggest:
|
|
288
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
289
|
+
|
|
290
|
+
def __getitem__(self, key: str) -> Any:
|
|
291
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
292
|
+
return super().__getitem__(key)
|
|
293
|
+
|
|
294
|
+
def get(self, key: str, default = None) -> Any:
|
|
295
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
296
|
+
return super().get(key, default)
|
|
297
|
+
|
|
298
|
+
def __init__(__self__, *,
|
|
299
|
+
principal_id: str,
|
|
300
|
+
tenant_id: str,
|
|
301
|
+
type: str,
|
|
302
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
|
|
303
|
+
"""
|
|
304
|
+
Managed service identity (system assigned and/or user assigned identities)
|
|
305
|
+
:param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
306
|
+
:param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
307
|
+
:param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
308
|
+
: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.
|
|
309
|
+
"""
|
|
310
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
311
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
312
|
+
pulumi.set(__self__, "type", type)
|
|
313
|
+
if user_assigned_identities is not None:
|
|
314
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
315
|
+
|
|
316
|
+
@property
|
|
317
|
+
@pulumi.getter(name="principalId")
|
|
318
|
+
def principal_id(self) -> str:
|
|
319
|
+
"""
|
|
320
|
+
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
321
|
+
"""
|
|
322
|
+
return pulumi.get(self, "principal_id")
|
|
323
|
+
|
|
324
|
+
@property
|
|
325
|
+
@pulumi.getter(name="tenantId")
|
|
326
|
+
def tenant_id(self) -> str:
|
|
327
|
+
"""
|
|
328
|
+
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
329
|
+
"""
|
|
330
|
+
return pulumi.get(self, "tenant_id")
|
|
331
|
+
|
|
332
|
+
@property
|
|
333
|
+
@pulumi.getter
|
|
334
|
+
def type(self) -> str:
|
|
335
|
+
"""
|
|
336
|
+
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
337
|
+
"""
|
|
338
|
+
return pulumi.get(self, "type")
|
|
339
|
+
|
|
340
|
+
@property
|
|
341
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
342
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
|
|
343
|
+
"""
|
|
344
|
+
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.
|
|
345
|
+
"""
|
|
346
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
@pulumi.output_type
|
|
350
|
+
class SystemDataResponse(dict):
|
|
351
|
+
"""
|
|
352
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
353
|
+
"""
|
|
354
|
+
@staticmethod
|
|
355
|
+
def __key_warning(key: str):
|
|
356
|
+
suggest = None
|
|
357
|
+
if key == "createdAt":
|
|
358
|
+
suggest = "created_at"
|
|
359
|
+
elif key == "createdBy":
|
|
360
|
+
suggest = "created_by"
|
|
361
|
+
elif key == "createdByType":
|
|
362
|
+
suggest = "created_by_type"
|
|
363
|
+
elif key == "lastModifiedAt":
|
|
364
|
+
suggest = "last_modified_at"
|
|
365
|
+
elif key == "lastModifiedBy":
|
|
366
|
+
suggest = "last_modified_by"
|
|
367
|
+
elif key == "lastModifiedByType":
|
|
368
|
+
suggest = "last_modified_by_type"
|
|
369
|
+
|
|
370
|
+
if suggest:
|
|
371
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
372
|
+
|
|
373
|
+
def __getitem__(self, key: str) -> Any:
|
|
374
|
+
SystemDataResponse.__key_warning(key)
|
|
375
|
+
return super().__getitem__(key)
|
|
376
|
+
|
|
377
|
+
def get(self, key: str, default = None) -> Any:
|
|
378
|
+
SystemDataResponse.__key_warning(key)
|
|
379
|
+
return super().get(key, default)
|
|
380
|
+
|
|
381
|
+
def __init__(__self__, *,
|
|
382
|
+
created_at: Optional[str] = None,
|
|
383
|
+
created_by: Optional[str] = None,
|
|
384
|
+
created_by_type: Optional[str] = None,
|
|
385
|
+
last_modified_at: Optional[str] = None,
|
|
386
|
+
last_modified_by: Optional[str] = None,
|
|
387
|
+
last_modified_by_type: Optional[str] = None):
|
|
388
|
+
"""
|
|
389
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
390
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
391
|
+
:param str created_by: The identity that created the resource.
|
|
392
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
393
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
394
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
395
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
396
|
+
"""
|
|
397
|
+
if created_at is not None:
|
|
398
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
399
|
+
if created_by is not None:
|
|
400
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
401
|
+
if created_by_type is not None:
|
|
402
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
403
|
+
if last_modified_at is not None:
|
|
404
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
405
|
+
if last_modified_by is not None:
|
|
406
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
407
|
+
if last_modified_by_type is not None:
|
|
408
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
409
|
+
|
|
410
|
+
@property
|
|
411
|
+
@pulumi.getter(name="createdAt")
|
|
412
|
+
def created_at(self) -> Optional[str]:
|
|
413
|
+
"""
|
|
414
|
+
The timestamp of resource creation (UTC).
|
|
415
|
+
"""
|
|
416
|
+
return pulumi.get(self, "created_at")
|
|
417
|
+
|
|
418
|
+
@property
|
|
419
|
+
@pulumi.getter(name="createdBy")
|
|
420
|
+
def created_by(self) -> Optional[str]:
|
|
421
|
+
"""
|
|
422
|
+
The identity that created the resource.
|
|
423
|
+
"""
|
|
424
|
+
return pulumi.get(self, "created_by")
|
|
425
|
+
|
|
426
|
+
@property
|
|
427
|
+
@pulumi.getter(name="createdByType")
|
|
428
|
+
def created_by_type(self) -> Optional[str]:
|
|
429
|
+
"""
|
|
430
|
+
The type of identity that created the resource.
|
|
431
|
+
"""
|
|
432
|
+
return pulumi.get(self, "created_by_type")
|
|
433
|
+
|
|
434
|
+
@property
|
|
435
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
436
|
+
def last_modified_at(self) -> Optional[str]:
|
|
437
|
+
"""
|
|
438
|
+
The timestamp of resource last modification (UTC)
|
|
439
|
+
"""
|
|
440
|
+
return pulumi.get(self, "last_modified_at")
|
|
441
|
+
|
|
442
|
+
@property
|
|
443
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
444
|
+
def last_modified_by(self) -> Optional[str]:
|
|
445
|
+
"""
|
|
446
|
+
The identity that last modified the resource.
|
|
447
|
+
"""
|
|
448
|
+
return pulumi.get(self, "last_modified_by")
|
|
449
|
+
|
|
450
|
+
@property
|
|
451
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
452
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
453
|
+
"""
|
|
454
|
+
The type of identity that last modified the resource.
|
|
455
|
+
"""
|
|
456
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
@pulumi.output_type
|
|
460
|
+
class UserAssignedIdentityResponse(dict):
|
|
461
|
+
"""
|
|
462
|
+
User assigned identity properties
|
|
463
|
+
"""
|
|
464
|
+
@staticmethod
|
|
465
|
+
def __key_warning(key: str):
|
|
466
|
+
suggest = None
|
|
467
|
+
if key == "clientId":
|
|
468
|
+
suggest = "client_id"
|
|
469
|
+
elif key == "principalId":
|
|
470
|
+
suggest = "principal_id"
|
|
471
|
+
|
|
472
|
+
if suggest:
|
|
473
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
474
|
+
|
|
475
|
+
def __getitem__(self, key: str) -> Any:
|
|
476
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
477
|
+
return super().__getitem__(key)
|
|
478
|
+
|
|
479
|
+
def get(self, key: str, default = None) -> Any:
|
|
480
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
481
|
+
return super().get(key, default)
|
|
482
|
+
|
|
483
|
+
def __init__(__self__, *,
|
|
484
|
+
client_id: str,
|
|
485
|
+
principal_id: str):
|
|
486
|
+
"""
|
|
487
|
+
User assigned identity properties
|
|
488
|
+
:param str client_id: The client ID of the assigned identity.
|
|
489
|
+
:param str principal_id: The principal ID of the assigned identity.
|
|
490
|
+
"""
|
|
491
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
492
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
493
|
+
|
|
494
|
+
@property
|
|
495
|
+
@pulumi.getter(name="clientId")
|
|
496
|
+
def client_id(self) -> str:
|
|
497
|
+
"""
|
|
498
|
+
The client ID of the assigned identity.
|
|
499
|
+
"""
|
|
500
|
+
return pulumi.get(self, "client_id")
|
|
501
|
+
|
|
502
|
+
@property
|
|
503
|
+
@pulumi.getter(name="principalId")
|
|
504
|
+
def principal_id(self) -> str:
|
|
505
|
+
"""
|
|
506
|
+
The principal ID of the assigned identity.
|
|
507
|
+
"""
|
|
508
|
+
return pulumi.get(self, "principal_id")
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
@pulumi.output_type
|
|
512
|
+
class VerificationStatusRecordResponse(dict):
|
|
513
|
+
"""
|
|
514
|
+
A class that represents a VerificationStatus record.
|
|
515
|
+
"""
|
|
516
|
+
@staticmethod
|
|
517
|
+
def __key_warning(key: str):
|
|
518
|
+
suggest = None
|
|
519
|
+
if key == "errorCode":
|
|
520
|
+
suggest = "error_code"
|
|
521
|
+
|
|
522
|
+
if suggest:
|
|
523
|
+
pulumi.log.warn(f"Key '{key}' not found in VerificationStatusRecordResponse. Access the value via the '{suggest}' property getter instead.")
|
|
524
|
+
|
|
525
|
+
def __getitem__(self, key: str) -> Any:
|
|
526
|
+
VerificationStatusRecordResponse.__key_warning(key)
|
|
527
|
+
return super().__getitem__(key)
|
|
528
|
+
|
|
529
|
+
def get(self, key: str, default = None) -> Any:
|
|
530
|
+
VerificationStatusRecordResponse.__key_warning(key)
|
|
531
|
+
return super().get(key, default)
|
|
532
|
+
|
|
533
|
+
def __init__(__self__, *,
|
|
534
|
+
error_code: str,
|
|
535
|
+
status: str):
|
|
536
|
+
"""
|
|
537
|
+
A class that represents a VerificationStatus record.
|
|
538
|
+
:param str error_code: Error code. This property will only be present if the status is UnableToVerify.
|
|
539
|
+
:param str status: Status of the verification operation.
|
|
540
|
+
"""
|
|
541
|
+
pulumi.set(__self__, "error_code", error_code)
|
|
542
|
+
pulumi.set(__self__, "status", status)
|
|
543
|
+
|
|
544
|
+
@property
|
|
545
|
+
@pulumi.getter(name="errorCode")
|
|
546
|
+
def error_code(self) -> str:
|
|
547
|
+
"""
|
|
548
|
+
Error code. This property will only be present if the status is UnableToVerify.
|
|
549
|
+
"""
|
|
550
|
+
return pulumi.get(self, "error_code")
|
|
551
|
+
|
|
552
|
+
@property
|
|
553
|
+
@pulumi.getter
|
|
554
|
+
def status(self) -> str:
|
|
555
|
+
"""
|
|
556
|
+
Status of the verification operation.
|
|
557
|
+
"""
|
|
558
|
+
return pulumi.get(self, "status")
|
|
559
|
+
|
|
560
|
+
|