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,197 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetSuppressionListResult',
|
|
20
|
+
'AwaitableGetSuppressionListResult',
|
|
21
|
+
'get_suppression_list',
|
|
22
|
+
'get_suppression_list_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetSuppressionListResult:
|
|
27
|
+
"""
|
|
28
|
+
A class representing a SuppressionList resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, created_time_stamp=None, data_location=None, id=None, last_updated_time_stamp=None, list_name=None, name=None, system_data=None, type=None):
|
|
31
|
+
if created_time_stamp and not isinstance(created_time_stamp, str):
|
|
32
|
+
raise TypeError("Expected argument 'created_time_stamp' to be a str")
|
|
33
|
+
pulumi.set(__self__, "created_time_stamp", created_time_stamp)
|
|
34
|
+
if data_location and not isinstance(data_location, str):
|
|
35
|
+
raise TypeError("Expected argument 'data_location' to be a str")
|
|
36
|
+
pulumi.set(__self__, "data_location", data_location)
|
|
37
|
+
if id and not isinstance(id, str):
|
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "id", id)
|
|
40
|
+
if last_updated_time_stamp and not isinstance(last_updated_time_stamp, str):
|
|
41
|
+
raise TypeError("Expected argument 'last_updated_time_stamp' to be a str")
|
|
42
|
+
pulumi.set(__self__, "last_updated_time_stamp", last_updated_time_stamp)
|
|
43
|
+
if list_name and not isinstance(list_name, str):
|
|
44
|
+
raise TypeError("Expected argument 'list_name' to be a str")
|
|
45
|
+
pulumi.set(__self__, "list_name", list_name)
|
|
46
|
+
if name and not isinstance(name, str):
|
|
47
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "name", name)
|
|
49
|
+
if system_data and not isinstance(system_data, dict):
|
|
50
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
52
|
+
if type and not isinstance(type, str):
|
|
53
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
54
|
+
pulumi.set(__self__, "type", type)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="createdTimeStamp")
|
|
58
|
+
def created_time_stamp(self) -> str:
|
|
59
|
+
"""
|
|
60
|
+
The date the resource was created.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "created_time_stamp")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter(name="dataLocation")
|
|
66
|
+
def data_location(self) -> str:
|
|
67
|
+
"""
|
|
68
|
+
The location where the SuppressionListAddress data is stored at rest. This value is inherited from the parent Domains resource.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "data_location")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter
|
|
74
|
+
def id(self) -> str:
|
|
75
|
+
"""
|
|
76
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "id")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter(name="lastUpdatedTimeStamp")
|
|
82
|
+
def last_updated_time_stamp(self) -> str:
|
|
83
|
+
"""
|
|
84
|
+
The date the resource was last updated.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "last_updated_time_stamp")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter(name="listName")
|
|
90
|
+
def list_name(self) -> Optional[str]:
|
|
91
|
+
"""
|
|
92
|
+
The the name of the suppression list. This value must match one of the valid sender usernames of the sending domain.
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "list_name")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter
|
|
98
|
+
def name(self) -> str:
|
|
99
|
+
"""
|
|
100
|
+
The name of the resource
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "name")
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter(name="systemData")
|
|
106
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
107
|
+
"""
|
|
108
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "system_data")
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def type(self) -> str:
|
|
115
|
+
"""
|
|
116
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "type")
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
class AwaitableGetSuppressionListResult(GetSuppressionListResult):
|
|
122
|
+
# pylint: disable=using-constant-test
|
|
123
|
+
def __await__(self):
|
|
124
|
+
if False:
|
|
125
|
+
yield self
|
|
126
|
+
return GetSuppressionListResult(
|
|
127
|
+
created_time_stamp=self.created_time_stamp,
|
|
128
|
+
data_location=self.data_location,
|
|
129
|
+
id=self.id,
|
|
130
|
+
last_updated_time_stamp=self.last_updated_time_stamp,
|
|
131
|
+
list_name=self.list_name,
|
|
132
|
+
name=self.name,
|
|
133
|
+
system_data=self.system_data,
|
|
134
|
+
type=self.type)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
def get_suppression_list(domain_name: Optional[str] = None,
|
|
138
|
+
email_service_name: Optional[str] = None,
|
|
139
|
+
resource_group_name: Optional[str] = None,
|
|
140
|
+
suppression_list_name: Optional[str] = None,
|
|
141
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSuppressionListResult:
|
|
142
|
+
"""
|
|
143
|
+
Get a SuppressionList resource.
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
:param str domain_name: The name of the Domains resource.
|
|
147
|
+
:param str email_service_name: The name of the EmailService resource.
|
|
148
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
149
|
+
:param str suppression_list_name: The name of the suppression list.
|
|
150
|
+
"""
|
|
151
|
+
__args__ = dict()
|
|
152
|
+
__args__['domainName'] = domain_name
|
|
153
|
+
__args__['emailServiceName'] = email_service_name
|
|
154
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
155
|
+
__args__['suppressionListName'] = suppression_list_name
|
|
156
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
157
|
+
__ret__ = pulumi.runtime.invoke('azure-native:communication/v20240901preview:getSuppressionList', __args__, opts=opts, typ=GetSuppressionListResult).value
|
|
158
|
+
|
|
159
|
+
return AwaitableGetSuppressionListResult(
|
|
160
|
+
created_time_stamp=pulumi.get(__ret__, 'created_time_stamp'),
|
|
161
|
+
data_location=pulumi.get(__ret__, 'data_location'),
|
|
162
|
+
id=pulumi.get(__ret__, 'id'),
|
|
163
|
+
last_updated_time_stamp=pulumi.get(__ret__, 'last_updated_time_stamp'),
|
|
164
|
+
list_name=pulumi.get(__ret__, 'list_name'),
|
|
165
|
+
name=pulumi.get(__ret__, 'name'),
|
|
166
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
167
|
+
type=pulumi.get(__ret__, 'type'))
|
|
168
|
+
def get_suppression_list_output(domain_name: Optional[pulumi.Input[str]] = None,
|
|
169
|
+
email_service_name: Optional[pulumi.Input[str]] = None,
|
|
170
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
171
|
+
suppression_list_name: Optional[pulumi.Input[str]] = None,
|
|
172
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSuppressionListResult]:
|
|
173
|
+
"""
|
|
174
|
+
Get a SuppressionList resource.
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
:param str domain_name: The name of the Domains resource.
|
|
178
|
+
:param str email_service_name: The name of the EmailService resource.
|
|
179
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
180
|
+
:param str suppression_list_name: The name of the suppression list.
|
|
181
|
+
"""
|
|
182
|
+
__args__ = dict()
|
|
183
|
+
__args__['domainName'] = domain_name
|
|
184
|
+
__args__['emailServiceName'] = email_service_name
|
|
185
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
186
|
+
__args__['suppressionListName'] = suppression_list_name
|
|
187
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
188
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:communication/v20240901preview:getSuppressionList', __args__, opts=opts, typ=GetSuppressionListResult)
|
|
189
|
+
return __ret__.apply(lambda __response__: GetSuppressionListResult(
|
|
190
|
+
created_time_stamp=pulumi.get(__response__, 'created_time_stamp'),
|
|
191
|
+
data_location=pulumi.get(__response__, 'data_location'),
|
|
192
|
+
id=pulumi.get(__response__, 'id'),
|
|
193
|
+
last_updated_time_stamp=pulumi.get(__response__, 'last_updated_time_stamp'),
|
|
194
|
+
list_name=pulumi.get(__response__, 'list_name'),
|
|
195
|
+
name=pulumi.get(__response__, 'name'),
|
|
196
|
+
system_data=pulumi.get(__response__, 'system_data'),
|
|
197
|
+
type=pulumi.get(__response__, 'type')))
|
|
@@ -0,0 +1,231 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetSuppressionListAddressResult',
|
|
20
|
+
'AwaitableGetSuppressionListAddressResult',
|
|
21
|
+
'get_suppression_list_address',
|
|
22
|
+
'get_suppression_list_address_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetSuppressionListAddressResult:
|
|
27
|
+
"""
|
|
28
|
+
A object that represents a SuppressionList record.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, data_location=None, email=None, first_name=None, id=None, last_modified=None, last_name=None, name=None, notes=None, system_data=None, type=None):
|
|
31
|
+
if data_location and not isinstance(data_location, str):
|
|
32
|
+
raise TypeError("Expected argument 'data_location' to be a str")
|
|
33
|
+
pulumi.set(__self__, "data_location", data_location)
|
|
34
|
+
if email and not isinstance(email, str):
|
|
35
|
+
raise TypeError("Expected argument 'email' to be a str")
|
|
36
|
+
pulumi.set(__self__, "email", email)
|
|
37
|
+
if first_name and not isinstance(first_name, str):
|
|
38
|
+
raise TypeError("Expected argument 'first_name' to be a str")
|
|
39
|
+
pulumi.set(__self__, "first_name", first_name)
|
|
40
|
+
if id and not isinstance(id, str):
|
|
41
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
42
|
+
pulumi.set(__self__, "id", id)
|
|
43
|
+
if last_modified and not isinstance(last_modified, str):
|
|
44
|
+
raise TypeError("Expected argument 'last_modified' to be a str")
|
|
45
|
+
pulumi.set(__self__, "last_modified", last_modified)
|
|
46
|
+
if last_name and not isinstance(last_name, str):
|
|
47
|
+
raise TypeError("Expected argument 'last_name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "last_name", last_name)
|
|
49
|
+
if name and not isinstance(name, str):
|
|
50
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
51
|
+
pulumi.set(__self__, "name", name)
|
|
52
|
+
if notes and not isinstance(notes, str):
|
|
53
|
+
raise TypeError("Expected argument 'notes' to be a str")
|
|
54
|
+
pulumi.set(__self__, "notes", notes)
|
|
55
|
+
if system_data and not isinstance(system_data, dict):
|
|
56
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
57
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
58
|
+
if type and not isinstance(type, str):
|
|
59
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
60
|
+
pulumi.set(__self__, "type", type)
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="dataLocation")
|
|
64
|
+
def data_location(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
The location where the SuppressionListAddress data is stored at rest. This value is inherited from the parent Domains resource.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "data_location")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter
|
|
72
|
+
def email(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
Email address of the recipient.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "email")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="firstName")
|
|
80
|
+
def first_name(self) -> Optional[str]:
|
|
81
|
+
"""
|
|
82
|
+
The first name of the email recipient.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "first_name")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def id(self) -> str:
|
|
89
|
+
"""
|
|
90
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "id")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="lastModified")
|
|
96
|
+
def last_modified(self) -> str:
|
|
97
|
+
"""
|
|
98
|
+
The date the address was last updated in a suppression list.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "last_modified")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="lastName")
|
|
104
|
+
def last_name(self) -> Optional[str]:
|
|
105
|
+
"""
|
|
106
|
+
The last name of the email recipient.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "last_name")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def name(self) -> str:
|
|
113
|
+
"""
|
|
114
|
+
The name of the resource
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "name")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter
|
|
120
|
+
def notes(self) -> Optional[str]:
|
|
121
|
+
"""
|
|
122
|
+
An optional property to provide contextual notes or a description for an address.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "notes")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter(name="systemData")
|
|
128
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
129
|
+
"""
|
|
130
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "system_data")
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def type(self) -> str:
|
|
137
|
+
"""
|
|
138
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "type")
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class AwaitableGetSuppressionListAddressResult(GetSuppressionListAddressResult):
|
|
144
|
+
# pylint: disable=using-constant-test
|
|
145
|
+
def __await__(self):
|
|
146
|
+
if False:
|
|
147
|
+
yield self
|
|
148
|
+
return GetSuppressionListAddressResult(
|
|
149
|
+
data_location=self.data_location,
|
|
150
|
+
email=self.email,
|
|
151
|
+
first_name=self.first_name,
|
|
152
|
+
id=self.id,
|
|
153
|
+
last_modified=self.last_modified,
|
|
154
|
+
last_name=self.last_name,
|
|
155
|
+
name=self.name,
|
|
156
|
+
notes=self.notes,
|
|
157
|
+
system_data=self.system_data,
|
|
158
|
+
type=self.type)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
def get_suppression_list_address(address_id: Optional[str] = None,
|
|
162
|
+
domain_name: Optional[str] = None,
|
|
163
|
+
email_service_name: Optional[str] = None,
|
|
164
|
+
resource_group_name: Optional[str] = None,
|
|
165
|
+
suppression_list_name: Optional[str] = None,
|
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSuppressionListAddressResult:
|
|
167
|
+
"""
|
|
168
|
+
Get a SuppressionListAddress.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param str address_id: The id of the address in a suppression list.
|
|
172
|
+
:param str domain_name: The name of the Domains resource.
|
|
173
|
+
:param str email_service_name: The name of the EmailService resource.
|
|
174
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
175
|
+
:param str suppression_list_name: The name of the suppression list.
|
|
176
|
+
"""
|
|
177
|
+
__args__ = dict()
|
|
178
|
+
__args__['addressId'] = address_id
|
|
179
|
+
__args__['domainName'] = domain_name
|
|
180
|
+
__args__['emailServiceName'] = email_service_name
|
|
181
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
182
|
+
__args__['suppressionListName'] = suppression_list_name
|
|
183
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
184
|
+
__ret__ = pulumi.runtime.invoke('azure-native:communication/v20240901preview:getSuppressionListAddress', __args__, opts=opts, typ=GetSuppressionListAddressResult).value
|
|
185
|
+
|
|
186
|
+
return AwaitableGetSuppressionListAddressResult(
|
|
187
|
+
data_location=pulumi.get(__ret__, 'data_location'),
|
|
188
|
+
email=pulumi.get(__ret__, 'email'),
|
|
189
|
+
first_name=pulumi.get(__ret__, 'first_name'),
|
|
190
|
+
id=pulumi.get(__ret__, 'id'),
|
|
191
|
+
last_modified=pulumi.get(__ret__, 'last_modified'),
|
|
192
|
+
last_name=pulumi.get(__ret__, 'last_name'),
|
|
193
|
+
name=pulumi.get(__ret__, 'name'),
|
|
194
|
+
notes=pulumi.get(__ret__, 'notes'),
|
|
195
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
196
|
+
type=pulumi.get(__ret__, 'type'))
|
|
197
|
+
def get_suppression_list_address_output(address_id: Optional[pulumi.Input[str]] = None,
|
|
198
|
+
domain_name: Optional[pulumi.Input[str]] = None,
|
|
199
|
+
email_service_name: Optional[pulumi.Input[str]] = None,
|
|
200
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
201
|
+
suppression_list_name: Optional[pulumi.Input[str]] = None,
|
|
202
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSuppressionListAddressResult]:
|
|
203
|
+
"""
|
|
204
|
+
Get a SuppressionListAddress.
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
:param str address_id: The id of the address in a suppression list.
|
|
208
|
+
:param str domain_name: The name of the Domains resource.
|
|
209
|
+
:param str email_service_name: The name of the EmailService resource.
|
|
210
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
211
|
+
:param str suppression_list_name: The name of the suppression list.
|
|
212
|
+
"""
|
|
213
|
+
__args__ = dict()
|
|
214
|
+
__args__['addressId'] = address_id
|
|
215
|
+
__args__['domainName'] = domain_name
|
|
216
|
+
__args__['emailServiceName'] = email_service_name
|
|
217
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
218
|
+
__args__['suppressionListName'] = suppression_list_name
|
|
219
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
220
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:communication/v20240901preview:getSuppressionListAddress', __args__, opts=opts, typ=GetSuppressionListAddressResult)
|
|
221
|
+
return __ret__.apply(lambda __response__: GetSuppressionListAddressResult(
|
|
222
|
+
data_location=pulumi.get(__response__, 'data_location'),
|
|
223
|
+
email=pulumi.get(__response__, 'email'),
|
|
224
|
+
first_name=pulumi.get(__response__, 'first_name'),
|
|
225
|
+
id=pulumi.get(__response__, 'id'),
|
|
226
|
+
last_modified=pulumi.get(__response__, 'last_modified'),
|
|
227
|
+
last_name=pulumi.get(__response__, 'last_name'),
|
|
228
|
+
name=pulumi.get(__response__, 'name'),
|
|
229
|
+
notes=pulumi.get(__response__, 'notes'),
|
|
230
|
+
system_data=pulumi.get(__response__, 'system_data'),
|
|
231
|
+
type=pulumi.get(__response__, 'type')))
|
|
@@ -0,0 +1,128 @@
|
|
|
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
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'ListCommunicationServiceKeysResult',
|
|
19
|
+
'AwaitableListCommunicationServiceKeysResult',
|
|
20
|
+
'list_communication_service_keys',
|
|
21
|
+
'list_communication_service_keys_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class ListCommunicationServiceKeysResult:
|
|
26
|
+
"""
|
|
27
|
+
A class representing the access keys of a CommunicationService.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, primary_connection_string=None, primary_key=None, secondary_connection_string=None, secondary_key=None):
|
|
30
|
+
if primary_connection_string and not isinstance(primary_connection_string, str):
|
|
31
|
+
raise TypeError("Expected argument 'primary_connection_string' to be a str")
|
|
32
|
+
pulumi.set(__self__, "primary_connection_string", primary_connection_string)
|
|
33
|
+
if primary_key and not isinstance(primary_key, str):
|
|
34
|
+
raise TypeError("Expected argument 'primary_key' to be a str")
|
|
35
|
+
pulumi.set(__self__, "primary_key", primary_key)
|
|
36
|
+
if secondary_connection_string and not isinstance(secondary_connection_string, str):
|
|
37
|
+
raise TypeError("Expected argument 'secondary_connection_string' to be a str")
|
|
38
|
+
pulumi.set(__self__, "secondary_connection_string", secondary_connection_string)
|
|
39
|
+
if secondary_key and not isinstance(secondary_key, str):
|
|
40
|
+
raise TypeError("Expected argument 'secondary_key' to be a str")
|
|
41
|
+
pulumi.set(__self__, "secondary_key", secondary_key)
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
@pulumi.getter(name="primaryConnectionString")
|
|
45
|
+
def primary_connection_string(self) -> Optional[str]:
|
|
46
|
+
"""
|
|
47
|
+
CommunicationService connection string constructed via the primaryKey
|
|
48
|
+
"""
|
|
49
|
+
return pulumi.get(self, "primary_connection_string")
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter(name="primaryKey")
|
|
53
|
+
def primary_key(self) -> Optional[str]:
|
|
54
|
+
"""
|
|
55
|
+
The primary access key.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "primary_key")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter(name="secondaryConnectionString")
|
|
61
|
+
def secondary_connection_string(self) -> Optional[str]:
|
|
62
|
+
"""
|
|
63
|
+
CommunicationService connection string constructed via the secondaryKey
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "secondary_connection_string")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="secondaryKey")
|
|
69
|
+
def secondary_key(self) -> Optional[str]:
|
|
70
|
+
"""
|
|
71
|
+
The secondary access key.
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "secondary_key")
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class AwaitableListCommunicationServiceKeysResult(ListCommunicationServiceKeysResult):
|
|
77
|
+
# pylint: disable=using-constant-test
|
|
78
|
+
def __await__(self):
|
|
79
|
+
if False:
|
|
80
|
+
yield self
|
|
81
|
+
return ListCommunicationServiceKeysResult(
|
|
82
|
+
primary_connection_string=self.primary_connection_string,
|
|
83
|
+
primary_key=self.primary_key,
|
|
84
|
+
secondary_connection_string=self.secondary_connection_string,
|
|
85
|
+
secondary_key=self.secondary_key)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
def list_communication_service_keys(communication_service_name: Optional[str] = None,
|
|
89
|
+
resource_group_name: Optional[str] = None,
|
|
90
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListCommunicationServiceKeysResult:
|
|
91
|
+
"""
|
|
92
|
+
Get the access keys of the CommunicationService resource.
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
:param str communication_service_name: The name of the CommunicationService resource.
|
|
96
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
97
|
+
"""
|
|
98
|
+
__args__ = dict()
|
|
99
|
+
__args__['communicationServiceName'] = communication_service_name
|
|
100
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
101
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
102
|
+
__ret__ = pulumi.runtime.invoke('azure-native:communication/v20240901preview:listCommunicationServiceKeys', __args__, opts=opts, typ=ListCommunicationServiceKeysResult).value
|
|
103
|
+
|
|
104
|
+
return AwaitableListCommunicationServiceKeysResult(
|
|
105
|
+
primary_connection_string=pulumi.get(__ret__, 'primary_connection_string'),
|
|
106
|
+
primary_key=pulumi.get(__ret__, 'primary_key'),
|
|
107
|
+
secondary_connection_string=pulumi.get(__ret__, 'secondary_connection_string'),
|
|
108
|
+
secondary_key=pulumi.get(__ret__, 'secondary_key'))
|
|
109
|
+
def list_communication_service_keys_output(communication_service_name: Optional[pulumi.Input[str]] = None,
|
|
110
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
111
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[ListCommunicationServiceKeysResult]:
|
|
112
|
+
"""
|
|
113
|
+
Get the access keys of the CommunicationService resource.
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
:param str communication_service_name: The name of the CommunicationService resource.
|
|
117
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
118
|
+
"""
|
|
119
|
+
__args__ = dict()
|
|
120
|
+
__args__['communicationServiceName'] = communication_service_name
|
|
121
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
122
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
123
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:communication/v20240901preview:listCommunicationServiceKeys', __args__, opts=opts, typ=ListCommunicationServiceKeysResult)
|
|
124
|
+
return __ret__.apply(lambda __response__: ListCommunicationServiceKeysResult(
|
|
125
|
+
primary_connection_string=pulumi.get(__response__, 'primary_connection_string'),
|
|
126
|
+
primary_key=pulumi.get(__response__, 'primary_key'),
|
|
127
|
+
secondary_connection_string=pulumi.get(__response__, 'secondary_connection_string'),
|
|
128
|
+
secondary_key=pulumi.get(__response__, 'secondary_key')))
|