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
|
@@ -58,7 +58,7 @@ def get_namespace_topic_event_subscription_full_url(event_subscription_name: Opt
|
|
|
58
58
|
Get the full endpoint URL for an event subscription of a namespace topic.
|
|
59
59
|
Azure REST API version: 2024-06-01-preview.
|
|
60
60
|
|
|
61
|
-
Other available API versions: 2024-12-15-preview.
|
|
61
|
+
Other available API versions: 2024-12-15-preview, 2025-02-15.
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
:param str event_subscription_name: Name of the event subscription.
|
|
@@ -85,7 +85,7 @@ def get_namespace_topic_event_subscription_full_url_output(event_subscription_na
|
|
|
85
85
|
Get the full endpoint URL for an event subscription of a namespace topic.
|
|
86
86
|
Azure REST API version: 2024-06-01-preview.
|
|
87
87
|
|
|
88
|
-
Other available API versions: 2024-12-15-preview.
|
|
88
|
+
Other available API versions: 2024-12-15-preview, 2025-02-15.
|
|
89
89
|
|
|
90
90
|
|
|
91
91
|
:param str event_subscription_name: Name of the event subscription.
|
|
@@ -140,7 +140,7 @@ def get_partner_configuration(resource_group_name: Optional[str] = None,
|
|
|
140
140
|
Get properties of a partner configuration.
|
|
141
141
|
Azure REST API version: 2022-06-15.
|
|
142
142
|
|
|
143
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
143
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
144
144
|
|
|
145
145
|
|
|
146
146
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -165,7 +165,7 @@ def get_partner_configuration_output(resource_group_name: Optional[pulumi.Input[
|
|
|
165
165
|
Get properties of a partner configuration.
|
|
166
166
|
Azure REST API version: 2022-06-15.
|
|
167
167
|
|
|
168
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
168
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
169
169
|
|
|
170
170
|
|
|
171
171
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -213,7 +213,7 @@ def get_partner_namespace(partner_namespace_name: Optional[str] = None,
|
|
|
213
213
|
Get properties of a partner namespace.
|
|
214
214
|
Azure REST API version: 2022-06-15.
|
|
215
215
|
|
|
216
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
216
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
217
217
|
|
|
218
218
|
|
|
219
219
|
:param str partner_namespace_name: Name of the partner namespace.
|
|
@@ -247,7 +247,7 @@ def get_partner_namespace_output(partner_namespace_name: Optional[pulumi.Input[s
|
|
|
247
247
|
Get properties of a partner namespace.
|
|
248
248
|
Azure REST API version: 2022-06-15.
|
|
249
249
|
|
|
250
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
250
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
251
251
|
|
|
252
252
|
|
|
253
253
|
:param str partner_namespace_name: Name of the partner namespace.
|
|
@@ -142,7 +142,7 @@ def get_partner_registration(partner_registration_name: Optional[str] = None,
|
|
|
142
142
|
Gets a partner registration with the specified parameters.
|
|
143
143
|
Azure REST API version: 2022-06-15.
|
|
144
144
|
|
|
145
|
-
Other available API versions: 2021-10-15-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
145
|
+
Other available API versions: 2021-10-15-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
146
146
|
|
|
147
147
|
|
|
148
148
|
:param str partner_registration_name: Name of the partner registration.
|
|
@@ -170,7 +170,7 @@ def get_partner_registration_output(partner_registration_name: Optional[pulumi.I
|
|
|
170
170
|
Gets a partner registration with the specified parameters.
|
|
171
171
|
Azure REST API version: 2022-06-15.
|
|
172
172
|
|
|
173
|
-
Other available API versions: 2021-10-15-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
173
|
+
Other available API versions: 2021-10-15-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
174
174
|
|
|
175
175
|
|
|
176
176
|
:param str partner_registration_name: Name of the partner registration.
|
|
@@ -227,7 +227,7 @@ def get_partner_topic(partner_topic_name: Optional[str] = None,
|
|
|
227
227
|
Get properties of a partner topic.
|
|
228
228
|
Azure REST API version: 2022-06-15.
|
|
229
229
|
|
|
230
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
230
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
:param str partner_topic_name: Name of the partner topic.
|
|
@@ -262,7 +262,7 @@ def get_partner_topic_output(partner_topic_name: Optional[pulumi.Input[str]] = N
|
|
|
262
262
|
Get properties of a partner topic.
|
|
263
263
|
Azure REST API version: 2022-06-15.
|
|
264
264
|
|
|
265
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
265
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
266
266
|
|
|
267
267
|
|
|
268
268
|
:param str partner_topic_name: Name of the partner topic.
|
|
@@ -230,7 +230,7 @@ def get_partner_topic_event_subscription(event_subscription_name: Optional[str]
|
|
|
230
230
|
Get properties of an event subscription of a partner topic.
|
|
231
231
|
Azure REST API version: 2022-06-15.
|
|
232
232
|
|
|
233
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
233
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
:param str event_subscription_name: Name of the event subscription to be found. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -268,7 +268,7 @@ def get_partner_topic_event_subscription_output(event_subscription_name: Optiona
|
|
|
268
268
|
Get properties of an event subscription of a partner topic.
|
|
269
269
|
Azure REST API version: 2022-06-15.
|
|
270
270
|
|
|
271
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
271
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
:param str event_subscription_name: Name of the event subscription to be found. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -58,7 +58,7 @@ def get_partner_topic_event_subscription_delivery_attributes(event_subscription_
|
|
|
58
58
|
Get all delivery attributes for an event subscription of a partner topic.
|
|
59
59
|
Azure REST API version: 2022-06-15.
|
|
60
60
|
|
|
61
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
61
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -82,7 +82,7 @@ def get_partner_topic_event_subscription_delivery_attributes_output(event_subscr
|
|
|
82
82
|
Get all delivery attributes for an event subscription of a partner topic.
|
|
83
83
|
Azure REST API version: 2022-06-15.
|
|
84
84
|
|
|
85
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
85
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -57,7 +57,7 @@ def get_partner_topic_event_subscription_full_url(event_subscription_name: Optio
|
|
|
57
57
|
Get the full endpoint URL for an event subscription of a partner topic.
|
|
58
58
|
Azure REST API version: 2022-06-15.
|
|
59
59
|
|
|
60
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
60
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -81,7 +81,7 @@ def get_partner_topic_event_subscription_full_url_output(event_subscription_name
|
|
|
81
81
|
Get the full endpoint URL for an event subscription of a partner topic.
|
|
82
82
|
Azure REST API version: 2022-06-15.
|
|
83
83
|
|
|
84
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
84
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -156,7 +156,7 @@ def get_permission_binding(namespace_name: Optional[str] = None,
|
|
|
156
156
|
Get properties of a permission binding.
|
|
157
157
|
Azure REST API version: 2023-06-01-preview.
|
|
158
158
|
|
|
159
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
159
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
:param str namespace_name: Name of the namespace.
|
|
@@ -188,7 +188,7 @@ def get_permission_binding_output(namespace_name: Optional[pulumi.Input[str]] =
|
|
|
188
188
|
Get properties of a permission binding.
|
|
189
189
|
Azure REST API version: 2023-06-01-preview.
|
|
190
190
|
|
|
191
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
191
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
192
192
|
|
|
193
193
|
|
|
194
194
|
:param str namespace_name: Name of the namespace.
|
|
@@ -128,7 +128,7 @@ def get_private_endpoint_connection(parent_name: Optional[str] = None,
|
|
|
128
128
|
Get a specific private endpoint connection under a topic, domain, or partner namespace.
|
|
129
129
|
Azure REST API version: 2022-06-15.
|
|
130
130
|
|
|
131
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
131
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
132
132
|
|
|
133
133
|
|
|
134
134
|
:param str parent_name: The name of the parent resource (namely, either, the topic name, domain name, or partner namespace name).
|
|
@@ -161,7 +161,7 @@ def get_private_endpoint_connection_output(parent_name: Optional[pulumi.Input[st
|
|
|
161
161
|
Get a specific private endpoint connection under a topic, domain, or partner namespace.
|
|
162
162
|
Azure REST API version: 2022-06-15.
|
|
163
163
|
|
|
164
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
164
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
:param str parent_name: The name of the parent resource (namely, either, the topic name, domain name, or partner namespace name).
|
|
@@ -177,7 +177,7 @@ def get_system_topic(resource_group_name: Optional[str] = None,
|
|
|
177
177
|
Get properties of a system topic.
|
|
178
178
|
Azure REST API version: 2022-06-15.
|
|
179
179
|
|
|
180
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
180
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
181
181
|
|
|
182
182
|
|
|
183
183
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -208,7 +208,7 @@ def get_system_topic_output(resource_group_name: Optional[pulumi.Input[str]] = N
|
|
|
208
208
|
Get properties of a system topic.
|
|
209
209
|
Azure REST API version: 2022-06-15.
|
|
210
210
|
|
|
211
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
211
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
212
212
|
|
|
213
213
|
|
|
214
214
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -230,7 +230,7 @@ def get_system_topic_event_subscription(event_subscription_name: Optional[str] =
|
|
|
230
230
|
Get an event subscription.
|
|
231
231
|
Azure REST API version: 2022-06-15.
|
|
232
232
|
|
|
233
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
233
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -268,7 +268,7 @@ def get_system_topic_event_subscription_output(event_subscription_name: Optional
|
|
|
268
268
|
Get an event subscription.
|
|
269
269
|
Azure REST API version: 2022-06-15.
|
|
270
270
|
|
|
271
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
271
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -58,7 +58,7 @@ def get_system_topic_event_subscription_delivery_attributes(event_subscription_n
|
|
|
58
58
|
Get all delivery attributes for an event subscription.
|
|
59
59
|
Azure REST API version: 2022-06-15.
|
|
60
60
|
|
|
61
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
61
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -82,7 +82,7 @@ def get_system_topic_event_subscription_delivery_attributes_output(event_subscri
|
|
|
82
82
|
Get all delivery attributes for an event subscription.
|
|
83
83
|
Azure REST API version: 2022-06-15.
|
|
84
84
|
|
|
85
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
85
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -57,7 +57,7 @@ def get_system_topic_event_subscription_full_url(event_subscription_name: Option
|
|
|
57
57
|
Get the full endpoint URL for an event subscription of a system topic.
|
|
58
58
|
Azure REST API version: 2022-06-15.
|
|
59
59
|
|
|
60
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
60
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -81,7 +81,7 @@ def get_system_topic_event_subscription_full_url_output(event_subscription_name:
|
|
|
81
81
|
Get the full endpoint URL for an event subscription of a system topic.
|
|
82
82
|
Azure REST API version: 2022-06-15.
|
|
83
83
|
|
|
84
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
84
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
:param str event_subscription_name: Name of the event subscription to be created. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -247,7 +247,7 @@ def get_topic(resource_group_name: Optional[str] = None,
|
|
|
247
247
|
Get properties of a topic.
|
|
248
248
|
Azure REST API version: 2022-06-15.
|
|
249
249
|
|
|
250
|
-
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
250
|
+
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
251
251
|
|
|
252
252
|
|
|
253
253
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -284,7 +284,7 @@ def get_topic_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
|
284
284
|
Get properties of a topic.
|
|
285
285
|
Azure REST API version: 2022-06-15.
|
|
286
286
|
|
|
287
|
-
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
287
|
+
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
288
288
|
|
|
289
289
|
|
|
290
290
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -230,7 +230,7 @@ def get_topic_event_subscription(event_subscription_name: Optional[str] = None,
|
|
|
230
230
|
Get properties of an event subscription of a topic.
|
|
231
231
|
Azure REST API version: 2022-06-15.
|
|
232
232
|
|
|
233
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
233
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
234
234
|
|
|
235
235
|
|
|
236
236
|
:param str event_subscription_name: Name of the event subscription to be found. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -268,7 +268,7 @@ def get_topic_event_subscription_output(event_subscription_name: Optional[pulumi
|
|
|
268
268
|
Get properties of an event subscription of a topic.
|
|
269
269
|
Azure REST API version: 2022-06-15.
|
|
270
270
|
|
|
271
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
271
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
272
272
|
|
|
273
273
|
|
|
274
274
|
:param str event_subscription_name: Name of the event subscription to be found. Event subscription names must be between 3 and 100 characters in length and use alphanumeric letters only.
|
|
@@ -58,7 +58,7 @@ def get_topic_event_subscription_delivery_attributes(event_subscription_name: Op
|
|
|
58
58
|
Get all delivery attributes for an event subscription for topic.
|
|
59
59
|
Azure REST API version: 2022-06-15.
|
|
60
60
|
|
|
61
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
61
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
:param str event_subscription_name: Name of the event subscription.
|
|
@@ -82,7 +82,7 @@ def get_topic_event_subscription_delivery_attributes_output(event_subscription_n
|
|
|
82
82
|
Get all delivery attributes for an event subscription for topic.
|
|
83
83
|
Azure REST API version: 2022-06-15.
|
|
84
84
|
|
|
85
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
85
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
:param str event_subscription_name: Name of the event subscription.
|
|
@@ -57,7 +57,7 @@ def get_topic_event_subscription_full_url(event_subscription_name: Optional[str]
|
|
|
57
57
|
Get the full endpoint URL for an event subscription for topic.
|
|
58
58
|
Azure REST API version: 2022-06-15.
|
|
59
59
|
|
|
60
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
60
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
:param str event_subscription_name: Name of the event subscription.
|
|
@@ -81,7 +81,7 @@ def get_topic_event_subscription_full_url_output(event_subscription_name: Option
|
|
|
81
81
|
Get the full endpoint URL for an event subscription for topic.
|
|
82
82
|
Azure REST API version: 2022-06-15.
|
|
83
83
|
|
|
84
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
84
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
:param str event_subscription_name: Name of the event subscription.
|
|
@@ -134,7 +134,7 @@ def get_topic_space(namespace_name: Optional[str] = None,
|
|
|
134
134
|
Get properties of a topic space.
|
|
135
135
|
Azure REST API version: 2023-06-01-preview.
|
|
136
136
|
|
|
137
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
137
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
138
138
|
|
|
139
139
|
|
|
140
140
|
:param str namespace_name: Name of the namespace.
|
|
@@ -164,7 +164,7 @@ def get_topic_space_output(namespace_name: Optional[pulumi.Input[str]] = None,
|
|
|
164
164
|
Get properties of a topic space.
|
|
165
165
|
Azure REST API version: 2023-06-01-preview.
|
|
166
166
|
|
|
167
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
167
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
168
168
|
|
|
169
169
|
|
|
170
170
|
:param str namespace_name: Name of the namespace.
|
|
@@ -68,7 +68,7 @@ def list_domain_shared_access_keys(domain_name: Optional[str] = None,
|
|
|
68
68
|
List the two keys used to publish to a domain.
|
|
69
69
|
Azure REST API version: 2022-06-15.
|
|
70
70
|
|
|
71
|
-
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
71
|
+
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
:param str domain_name: Name of the domain.
|
|
@@ -90,7 +90,7 @@ def list_domain_shared_access_keys_output(domain_name: Optional[pulumi.Input[str
|
|
|
90
90
|
List the two keys used to publish to a domain.
|
|
91
91
|
Azure REST API version: 2022-06-15.
|
|
92
92
|
|
|
93
|
-
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
93
|
+
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
:param str domain_name: Name of the domain.
|
|
@@ -68,7 +68,7 @@ def list_namespace_shared_access_keys(namespace_name: Optional[str] = None,
|
|
|
68
68
|
List the two keys used to publish to a namespace.
|
|
69
69
|
Azure REST API version: 2023-06-01-preview.
|
|
70
70
|
|
|
71
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
71
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
:param str namespace_name: Name of the namespace.
|
|
@@ -90,7 +90,7 @@ def list_namespace_shared_access_keys_output(namespace_name: Optional[pulumi.Inp
|
|
|
90
90
|
List the two keys used to publish to a namespace.
|
|
91
91
|
Azure REST API version: 2023-06-01-preview.
|
|
92
92
|
|
|
93
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
93
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
:param str namespace_name: Name of the namespace.
|
|
@@ -69,7 +69,7 @@ def list_namespace_topic_shared_access_keys(namespace_name: Optional[str] = None
|
|
|
69
69
|
List the two keys used to publish to a namespace topic.
|
|
70
70
|
Azure REST API version: 2023-06-01-preview.
|
|
71
71
|
|
|
72
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
72
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
:param str namespace_name: Name of the namespace.
|
|
@@ -94,7 +94,7 @@ def list_namespace_topic_shared_access_keys_output(namespace_name: Optional[pulu
|
|
|
94
94
|
List the two keys used to publish to a namespace topic.
|
|
95
95
|
Azure REST API version: 2023-06-01-preview.
|
|
96
96
|
|
|
97
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
97
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
98
98
|
|
|
99
99
|
|
|
100
100
|
:param str namespace_name: Name of the namespace.
|
|
@@ -68,7 +68,7 @@ def list_partner_namespace_shared_access_keys(partner_namespace_name: Optional[s
|
|
|
68
68
|
List the two keys used to publish to a partner namespace.
|
|
69
69
|
Azure REST API version: 2022-06-15.
|
|
70
70
|
|
|
71
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
71
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
:param str partner_namespace_name: Name of the partner namespace.
|
|
@@ -90,7 +90,7 @@ def list_partner_namespace_shared_access_keys_output(partner_namespace_name: Opt
|
|
|
90
90
|
List the two keys used to publish to a partner namespace.
|
|
91
91
|
Azure REST API version: 2022-06-15.
|
|
92
92
|
|
|
93
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
93
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
:param str partner_namespace_name: Name of the partner namespace.
|
|
@@ -68,7 +68,7 @@ def list_topic_shared_access_keys(resource_group_name: Optional[str] = None,
|
|
|
68
68
|
List the two keys used to publish to a topic.
|
|
69
69
|
Azure REST API version: 2022-06-15.
|
|
70
70
|
|
|
71
|
-
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
71
|
+
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
72
72
|
|
|
73
73
|
|
|
74
74
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -90,7 +90,7 @@ def list_topic_shared_access_keys_output(resource_group_name: Optional[pulumi.In
|
|
|
90
90
|
List the two keys used to publish to a topic.
|
|
91
91
|
Azure REST API version: 2022-06-15.
|
|
92
92
|
|
|
93
|
-
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
93
|
+
Other available API versions: 2020-04-01-preview, 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
94
94
|
|
|
95
95
|
|
|
96
96
|
:param str resource_group_name: The name of the resource group within the user's subscription.
|
|
@@ -240,7 +240,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
240
240
|
Namespace resource.
|
|
241
241
|
Azure REST API version: 2023-06-01-preview.
|
|
242
242
|
|
|
243
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
243
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
244
244
|
|
|
245
245
|
:param str resource_name: The name of the resource.
|
|
246
246
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -268,7 +268,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
268
268
|
Namespace resource.
|
|
269
269
|
Azure REST API version: 2023-06-01-preview.
|
|
270
270
|
|
|
271
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
271
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
272
272
|
|
|
273
273
|
:param str resource_name: The name of the resource.
|
|
274
274
|
:param NamespaceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -325,7 +325,7 @@ class Namespace(pulumi.CustomResource):
|
|
|
325
325
|
__props__.__dict__["system_data"] = None
|
|
326
326
|
__props__.__dict__["topics_configuration"] = None
|
|
327
327
|
__props__.__dict__["type"] = None
|
|
328
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Namespace"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Namespace"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Namespace"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Namespace")])
|
|
328
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:Namespace"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:Namespace"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:Namespace"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:Namespace"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:Namespace")])
|
|
329
329
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
330
330
|
super(Namespace, __self__).__init__(
|
|
331
331
|
'azure-native:eventgrid:Namespace',
|
|
@@ -140,7 +140,7 @@ class NamespaceTopic(pulumi.CustomResource):
|
|
|
140
140
|
Namespace topic details.
|
|
141
141
|
Azure REST API version: 2023-06-01-preview.
|
|
142
142
|
|
|
143
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
143
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
144
144
|
|
|
145
145
|
:param str resource_name: The name of the resource.
|
|
146
146
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -162,7 +162,7 @@ class NamespaceTopic(pulumi.CustomResource):
|
|
|
162
162
|
Namespace topic details.
|
|
163
163
|
Azure REST API version: 2023-06-01-preview.
|
|
164
164
|
|
|
165
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
165
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
166
166
|
|
|
167
167
|
:param str resource_name: The name of the resource.
|
|
168
168
|
:param NamespaceTopicArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -210,7 +210,7 @@ class NamespaceTopic(pulumi.CustomResource):
|
|
|
210
210
|
__props__.__dict__["provisioning_state"] = None
|
|
211
211
|
__props__.__dict__["system_data"] = None
|
|
212
212
|
__props__.__dict__["type"] = None
|
|
213
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:NamespaceTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:NamespaceTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:NamespaceTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:NamespaceTopic")])
|
|
213
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:NamespaceTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:NamespaceTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:NamespaceTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:NamespaceTopic"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:NamespaceTopic")])
|
|
214
214
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
215
215
|
super(NamespaceTopic, __self__).__init__(
|
|
216
216
|
'azure-native:eventgrid:NamespaceTopic',
|
|
@@ -153,7 +153,7 @@ class NamespaceTopicEventSubscription(pulumi.CustomResource):
|
|
|
153
153
|
Event Subscription.
|
|
154
154
|
Azure REST API version: 2023-06-01-preview.
|
|
155
155
|
|
|
156
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
156
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
157
157
|
|
|
158
158
|
:param str resource_name: The name of the resource.
|
|
159
159
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -175,7 +175,7 @@ class NamespaceTopicEventSubscription(pulumi.CustomResource):
|
|
|
175
175
|
Event Subscription.
|
|
176
176
|
Azure REST API version: 2023-06-01-preview.
|
|
177
177
|
|
|
178
|
-
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
178
|
+
Other available API versions: 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
179
179
|
|
|
180
180
|
:param str resource_name: The name of the resource.
|
|
181
181
|
:param NamespaceTopicEventSubscriptionArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -225,7 +225,7 @@ class NamespaceTopicEventSubscription(pulumi.CustomResource):
|
|
|
225
225
|
__props__.__dict__["provisioning_state"] = None
|
|
226
226
|
__props__.__dict__["system_data"] = None
|
|
227
227
|
__props__.__dict__["type"] = None
|
|
228
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:NamespaceTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:NamespaceTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:NamespaceTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:NamespaceTopicEventSubscription")])
|
|
228
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:NamespaceTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:NamespaceTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:NamespaceTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:NamespaceTopicEventSubscription"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:NamespaceTopicEventSubscription")])
|
|
229
229
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
230
230
|
super(NamespaceTopicEventSubscription, __self__).__init__(
|
|
231
231
|
'azure-native:eventgrid:NamespaceTopicEventSubscription',
|
|
@@ -121,7 +121,7 @@ class PartnerConfiguration(pulumi.CustomResource):
|
|
|
121
121
|
Partner configuration information
|
|
122
122
|
Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
|
|
123
123
|
|
|
124
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
124
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
125
125
|
|
|
126
126
|
:param str resource_name: The name of the resource.
|
|
127
127
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -141,7 +141,7 @@ class PartnerConfiguration(pulumi.CustomResource):
|
|
|
141
141
|
Partner configuration information
|
|
142
142
|
Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-10-15-preview.
|
|
143
143
|
|
|
144
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
144
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
145
145
|
|
|
146
146
|
:param str resource_name: The name of the resource.
|
|
147
147
|
:param PartnerConfigurationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -182,7 +182,7 @@ class PartnerConfiguration(pulumi.CustomResource):
|
|
|
182
182
|
__props__.__dict__["name"] = None
|
|
183
183
|
__props__.__dict__["system_data"] = None
|
|
184
184
|
__props__.__dict__["type"] = None
|
|
185
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:PartnerConfiguration")])
|
|
185
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:PartnerConfiguration"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:PartnerConfiguration")])
|
|
186
186
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
187
187
|
super(PartnerConfiguration, __self__).__init__(
|
|
188
188
|
'azure-native:eventgrid:PartnerConfiguration',
|
|
@@ -201,7 +201,7 @@ class PartnerNamespace(pulumi.CustomResource):
|
|
|
201
201
|
EventGrid Partner Namespace.
|
|
202
202
|
Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-06-01-preview.
|
|
203
203
|
|
|
204
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
204
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
205
205
|
|
|
206
206
|
:param str resource_name: The name of the resource.
|
|
207
207
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -228,7 +228,7 @@ class PartnerNamespace(pulumi.CustomResource):
|
|
|
228
228
|
EventGrid Partner Namespace.
|
|
229
229
|
Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2021-06-01-preview.
|
|
230
230
|
|
|
231
|
-
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview.
|
|
231
|
+
Other available API versions: 2023-06-01-preview, 2023-12-15-preview, 2024-06-01-preview, 2024-12-15-preview, 2025-02-15.
|
|
232
232
|
|
|
233
233
|
:param str resource_name: The name of the resource.
|
|
234
234
|
:param PartnerNamespaceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -286,7 +286,7 @@ class PartnerNamespace(pulumi.CustomResource):
|
|
|
286
286
|
__props__.__dict__["provisioning_state"] = None
|
|
287
287
|
__props__.__dict__["system_data"] = None
|
|
288
288
|
__props__.__dict__["type"] = None
|
|
289
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:PartnerNamespace")])
|
|
289
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventgrid/v20200401preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20201015preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20210601preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20211015preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20220615:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20230601preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20231215preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20240601preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20241215preview:PartnerNamespace"), pulumi.Alias(type_="azure-native:eventgrid/v20250215:PartnerNamespace")])
|
|
290
290
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
291
291
|
super(PartnerNamespace, __self__).__init__(
|
|
292
292
|
'azure-native:eventgrid:PartnerNamespace',
|