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,520 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['NamespaceArgs', 'Namespace']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class NamespaceArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
resource_group_name: pulumi.Input[str],
|
|
26
|
+
identity: Optional[pulumi.Input['IdentityInfoArgs']] = None,
|
|
27
|
+
inbound_ip_rules: Optional[pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]]] = None,
|
|
28
|
+
is_zone_redundant: Optional[pulumi.Input[bool]] = None,
|
|
29
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
30
|
+
minimum_tls_version_allowed: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
|
|
31
|
+
namespace_name: Optional[pulumi.Input[str]] = None,
|
|
32
|
+
private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]] = None,
|
|
33
|
+
public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
|
|
34
|
+
sku: Optional[pulumi.Input['NamespaceSkuArgs']] = None,
|
|
35
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
36
|
+
topic_spaces_configuration: Optional[pulumi.Input['TopicSpacesConfigurationArgs']] = None,
|
|
37
|
+
topics_configuration: Optional[pulumi.Input['TopicsConfigurationArgs']] = None):
|
|
38
|
+
"""
|
|
39
|
+
The set of arguments for constructing a Namespace resource.
|
|
40
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group within the user's subscription.
|
|
41
|
+
:param pulumi.Input['IdentityInfoArgs'] identity: Identity information for the Namespace resource.
|
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]] inbound_ip_rules: This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
|
|
43
|
+
:param pulumi.Input[bool] is_zone_redundant: This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this
|
|
44
|
+
property is not specified explicitly by the user, its default value depends on the following conditions:
|
|
45
|
+
a. For Availability Zones enabled regions - The default property value would be true.
|
|
46
|
+
b. For non-Availability Zones enabled regions - The default property value would be false.
|
|
47
|
+
Once specified, this property cannot be updated.
|
|
48
|
+
:param pulumi.Input[str] location: Location of the resource.
|
|
49
|
+
:param pulumi.Input[Union[str, 'TlsVersion']] minimum_tls_version_allowed: Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported.
|
|
50
|
+
:param pulumi.Input[str] namespace_name: Name of the namespace.
|
|
51
|
+
:param pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]] private_endpoint_connections: List of private endpoint connections.
|
|
52
|
+
:param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: This determines if traffic is allowed over public network. By default it is enabled.
|
|
53
|
+
You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.PubSub.NamespaceProperties.InboundIpRules" />
|
|
54
|
+
:param pulumi.Input['NamespaceSkuArgs'] sku: Represents available Sku pricing tiers.
|
|
55
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Tags of the resource.
|
|
56
|
+
:param pulumi.Input['TopicSpacesConfigurationArgs'] topic_spaces_configuration: Topic spaces configuration information for the namespace resource
|
|
57
|
+
:param pulumi.Input['TopicsConfigurationArgs'] topics_configuration: Topics configuration information for the namespace resource
|
|
58
|
+
"""
|
|
59
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
60
|
+
if identity is not None:
|
|
61
|
+
pulumi.set(__self__, "identity", identity)
|
|
62
|
+
if inbound_ip_rules is not None:
|
|
63
|
+
pulumi.set(__self__, "inbound_ip_rules", inbound_ip_rules)
|
|
64
|
+
if is_zone_redundant is not None:
|
|
65
|
+
pulumi.set(__self__, "is_zone_redundant", is_zone_redundant)
|
|
66
|
+
if location is not None:
|
|
67
|
+
pulumi.set(__self__, "location", location)
|
|
68
|
+
if minimum_tls_version_allowed is not None:
|
|
69
|
+
pulumi.set(__self__, "minimum_tls_version_allowed", minimum_tls_version_allowed)
|
|
70
|
+
if namespace_name is not None:
|
|
71
|
+
pulumi.set(__self__, "namespace_name", namespace_name)
|
|
72
|
+
if private_endpoint_connections is not None:
|
|
73
|
+
pulumi.set(__self__, "private_endpoint_connections", private_endpoint_connections)
|
|
74
|
+
if public_network_access is not None:
|
|
75
|
+
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
76
|
+
if sku is not None:
|
|
77
|
+
pulumi.set(__self__, "sku", sku)
|
|
78
|
+
if tags is not None:
|
|
79
|
+
pulumi.set(__self__, "tags", tags)
|
|
80
|
+
if topic_spaces_configuration is not None:
|
|
81
|
+
pulumi.set(__self__, "topic_spaces_configuration", topic_spaces_configuration)
|
|
82
|
+
if topics_configuration is not None:
|
|
83
|
+
pulumi.set(__self__, "topics_configuration", topics_configuration)
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter(name="resourceGroupName")
|
|
87
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
88
|
+
"""
|
|
89
|
+
The name of the resource group within the user's subscription.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "resource_group_name")
|
|
92
|
+
|
|
93
|
+
@resource_group_name.setter
|
|
94
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
95
|
+
pulumi.set(self, "resource_group_name", value)
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def identity(self) -> Optional[pulumi.Input['IdentityInfoArgs']]:
|
|
100
|
+
"""
|
|
101
|
+
Identity information for the Namespace resource.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "identity")
|
|
104
|
+
|
|
105
|
+
@identity.setter
|
|
106
|
+
def identity(self, value: Optional[pulumi.Input['IdentityInfoArgs']]):
|
|
107
|
+
pulumi.set(self, "identity", value)
|
|
108
|
+
|
|
109
|
+
@property
|
|
110
|
+
@pulumi.getter(name="inboundIpRules")
|
|
111
|
+
def inbound_ip_rules(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]]]:
|
|
112
|
+
"""
|
|
113
|
+
This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
|
|
114
|
+
"""
|
|
115
|
+
return pulumi.get(self, "inbound_ip_rules")
|
|
116
|
+
|
|
117
|
+
@inbound_ip_rules.setter
|
|
118
|
+
def inbound_ip_rules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InboundIpRuleArgs']]]]):
|
|
119
|
+
pulumi.set(self, "inbound_ip_rules", value)
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter(name="isZoneRedundant")
|
|
123
|
+
def is_zone_redundant(self) -> Optional[pulumi.Input[bool]]:
|
|
124
|
+
"""
|
|
125
|
+
This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this
|
|
126
|
+
property is not specified explicitly by the user, its default value depends on the following conditions:
|
|
127
|
+
a. For Availability Zones enabled regions - The default property value would be true.
|
|
128
|
+
b. For non-Availability Zones enabled regions - The default property value would be false.
|
|
129
|
+
Once specified, this property cannot be updated.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "is_zone_redundant")
|
|
132
|
+
|
|
133
|
+
@is_zone_redundant.setter
|
|
134
|
+
def is_zone_redundant(self, value: Optional[pulumi.Input[bool]]):
|
|
135
|
+
pulumi.set(self, "is_zone_redundant", value)
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter
|
|
139
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
140
|
+
"""
|
|
141
|
+
Location of the resource.
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "location")
|
|
144
|
+
|
|
145
|
+
@location.setter
|
|
146
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
147
|
+
pulumi.set(self, "location", value)
|
|
148
|
+
|
|
149
|
+
@property
|
|
150
|
+
@pulumi.getter(name="minimumTlsVersionAllowed")
|
|
151
|
+
def minimum_tls_version_allowed(self) -> Optional[pulumi.Input[Union[str, 'TlsVersion']]]:
|
|
152
|
+
"""
|
|
153
|
+
Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported.
|
|
154
|
+
"""
|
|
155
|
+
return pulumi.get(self, "minimum_tls_version_allowed")
|
|
156
|
+
|
|
157
|
+
@minimum_tls_version_allowed.setter
|
|
158
|
+
def minimum_tls_version_allowed(self, value: Optional[pulumi.Input[Union[str, 'TlsVersion']]]):
|
|
159
|
+
pulumi.set(self, "minimum_tls_version_allowed", value)
|
|
160
|
+
|
|
161
|
+
@property
|
|
162
|
+
@pulumi.getter(name="namespaceName")
|
|
163
|
+
def namespace_name(self) -> Optional[pulumi.Input[str]]:
|
|
164
|
+
"""
|
|
165
|
+
Name of the namespace.
|
|
166
|
+
"""
|
|
167
|
+
return pulumi.get(self, "namespace_name")
|
|
168
|
+
|
|
169
|
+
@namespace_name.setter
|
|
170
|
+
def namespace_name(self, value: Optional[pulumi.Input[str]]):
|
|
171
|
+
pulumi.set(self, "namespace_name", value)
|
|
172
|
+
|
|
173
|
+
@property
|
|
174
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
175
|
+
def private_endpoint_connections(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]]:
|
|
176
|
+
"""
|
|
177
|
+
List of private endpoint connections.
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
180
|
+
|
|
181
|
+
@private_endpoint_connections.setter
|
|
182
|
+
def private_endpoint_connections(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PrivateEndpointConnectionArgs']]]]):
|
|
183
|
+
pulumi.set(self, "private_endpoint_connections", value)
|
|
184
|
+
|
|
185
|
+
@property
|
|
186
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
187
|
+
def public_network_access(self) -> Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]:
|
|
188
|
+
"""
|
|
189
|
+
This determines if traffic is allowed over public network. By default it is enabled.
|
|
190
|
+
You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.PubSub.NamespaceProperties.InboundIpRules" />
|
|
191
|
+
"""
|
|
192
|
+
return pulumi.get(self, "public_network_access")
|
|
193
|
+
|
|
194
|
+
@public_network_access.setter
|
|
195
|
+
def public_network_access(self, value: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]]):
|
|
196
|
+
pulumi.set(self, "public_network_access", value)
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter
|
|
200
|
+
def sku(self) -> Optional[pulumi.Input['NamespaceSkuArgs']]:
|
|
201
|
+
"""
|
|
202
|
+
Represents available Sku pricing tiers.
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "sku")
|
|
205
|
+
|
|
206
|
+
@sku.setter
|
|
207
|
+
def sku(self, value: Optional[pulumi.Input['NamespaceSkuArgs']]):
|
|
208
|
+
pulumi.set(self, "sku", value)
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter
|
|
212
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
213
|
+
"""
|
|
214
|
+
Tags of the resource.
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "tags")
|
|
217
|
+
|
|
218
|
+
@tags.setter
|
|
219
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
220
|
+
pulumi.set(self, "tags", value)
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
@pulumi.getter(name="topicSpacesConfiguration")
|
|
224
|
+
def topic_spaces_configuration(self) -> Optional[pulumi.Input['TopicSpacesConfigurationArgs']]:
|
|
225
|
+
"""
|
|
226
|
+
Topic spaces configuration information for the namespace resource
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "topic_spaces_configuration")
|
|
229
|
+
|
|
230
|
+
@topic_spaces_configuration.setter
|
|
231
|
+
def topic_spaces_configuration(self, value: Optional[pulumi.Input['TopicSpacesConfigurationArgs']]):
|
|
232
|
+
pulumi.set(self, "topic_spaces_configuration", value)
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
@pulumi.getter(name="topicsConfiguration")
|
|
236
|
+
def topics_configuration(self) -> Optional[pulumi.Input['TopicsConfigurationArgs']]:
|
|
237
|
+
"""
|
|
238
|
+
Topics configuration information for the namespace resource
|
|
239
|
+
"""
|
|
240
|
+
return pulumi.get(self, "topics_configuration")
|
|
241
|
+
|
|
242
|
+
@topics_configuration.setter
|
|
243
|
+
def topics_configuration(self, value: Optional[pulumi.Input['TopicsConfigurationArgs']]):
|
|
244
|
+
pulumi.set(self, "topics_configuration", value)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
class Namespace(pulumi.CustomResource):
|
|
248
|
+
@overload
|
|
249
|
+
def __init__(__self__,
|
|
250
|
+
resource_name: str,
|
|
251
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
252
|
+
identity: Optional[pulumi.Input[Union['IdentityInfoArgs', 'IdentityInfoArgsDict']]] = None,
|
|
253
|
+
inbound_ip_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InboundIpRuleArgs', 'InboundIpRuleArgsDict']]]]] = None,
|
|
254
|
+
is_zone_redundant: Optional[pulumi.Input[bool]] = None,
|
|
255
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
256
|
+
minimum_tls_version_allowed: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
|
|
257
|
+
namespace_name: Optional[pulumi.Input[str]] = None,
|
|
258
|
+
private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PrivateEndpointConnectionArgs', 'PrivateEndpointConnectionArgsDict']]]]] = None,
|
|
259
|
+
public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
|
|
260
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
261
|
+
sku: Optional[pulumi.Input[Union['NamespaceSkuArgs', 'NamespaceSkuArgsDict']]] = None,
|
|
262
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
263
|
+
topic_spaces_configuration: Optional[pulumi.Input[Union['TopicSpacesConfigurationArgs', 'TopicSpacesConfigurationArgsDict']]] = None,
|
|
264
|
+
topics_configuration: Optional[pulumi.Input[Union['TopicsConfigurationArgs', 'TopicsConfigurationArgsDict']]] = None,
|
|
265
|
+
__props__=None):
|
|
266
|
+
"""
|
|
267
|
+
Namespace resource.
|
|
268
|
+
|
|
269
|
+
:param str resource_name: The name of the resource.
|
|
270
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
271
|
+
:param pulumi.Input[Union['IdentityInfoArgs', 'IdentityInfoArgsDict']] identity: Identity information for the Namespace resource.
|
|
272
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['InboundIpRuleArgs', 'InboundIpRuleArgsDict']]]] inbound_ip_rules: This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
|
|
273
|
+
:param pulumi.Input[bool] is_zone_redundant: This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this
|
|
274
|
+
property is not specified explicitly by the user, its default value depends on the following conditions:
|
|
275
|
+
a. For Availability Zones enabled regions - The default property value would be true.
|
|
276
|
+
b. For non-Availability Zones enabled regions - The default property value would be false.
|
|
277
|
+
Once specified, this property cannot be updated.
|
|
278
|
+
:param pulumi.Input[str] location: Location of the resource.
|
|
279
|
+
:param pulumi.Input[Union[str, 'TlsVersion']] minimum_tls_version_allowed: Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported.
|
|
280
|
+
:param pulumi.Input[str] namespace_name: Name of the namespace.
|
|
281
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['PrivateEndpointConnectionArgs', 'PrivateEndpointConnectionArgsDict']]]] private_endpoint_connections: List of private endpoint connections.
|
|
282
|
+
:param pulumi.Input[Union[str, 'PublicNetworkAccess']] public_network_access: This determines if traffic is allowed over public network. By default it is enabled.
|
|
283
|
+
You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.PubSub.NamespaceProperties.InboundIpRules" />
|
|
284
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group within the user's subscription.
|
|
285
|
+
:param pulumi.Input[Union['NamespaceSkuArgs', 'NamespaceSkuArgsDict']] sku: Represents available Sku pricing tiers.
|
|
286
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Tags of the resource.
|
|
287
|
+
:param pulumi.Input[Union['TopicSpacesConfigurationArgs', 'TopicSpacesConfigurationArgsDict']] topic_spaces_configuration: Topic spaces configuration information for the namespace resource
|
|
288
|
+
:param pulumi.Input[Union['TopicsConfigurationArgs', 'TopicsConfigurationArgsDict']] topics_configuration: Topics configuration information for the namespace resource
|
|
289
|
+
"""
|
|
290
|
+
...
|
|
291
|
+
@overload
|
|
292
|
+
def __init__(__self__,
|
|
293
|
+
resource_name: str,
|
|
294
|
+
args: NamespaceArgs,
|
|
295
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
296
|
+
"""
|
|
297
|
+
Namespace resource.
|
|
298
|
+
|
|
299
|
+
:param str resource_name: The name of the resource.
|
|
300
|
+
:param NamespaceArgs args: The arguments to use to populate this resource's properties.
|
|
301
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
302
|
+
"""
|
|
303
|
+
...
|
|
304
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
305
|
+
resource_args, opts = _utilities.get_resource_args_opts(NamespaceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
306
|
+
if resource_args is not None:
|
|
307
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
308
|
+
else:
|
|
309
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
310
|
+
|
|
311
|
+
def _internal_init(__self__,
|
|
312
|
+
resource_name: str,
|
|
313
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
314
|
+
identity: Optional[pulumi.Input[Union['IdentityInfoArgs', 'IdentityInfoArgsDict']]] = None,
|
|
315
|
+
inbound_ip_rules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['InboundIpRuleArgs', 'InboundIpRuleArgsDict']]]]] = None,
|
|
316
|
+
is_zone_redundant: Optional[pulumi.Input[bool]] = None,
|
|
317
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
318
|
+
minimum_tls_version_allowed: Optional[pulumi.Input[Union[str, 'TlsVersion']]] = None,
|
|
319
|
+
namespace_name: Optional[pulumi.Input[str]] = None,
|
|
320
|
+
private_endpoint_connections: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PrivateEndpointConnectionArgs', 'PrivateEndpointConnectionArgsDict']]]]] = None,
|
|
321
|
+
public_network_access: Optional[pulumi.Input[Union[str, 'PublicNetworkAccess']]] = None,
|
|
322
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
323
|
+
sku: Optional[pulumi.Input[Union['NamespaceSkuArgs', 'NamespaceSkuArgsDict']]] = None,
|
|
324
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
325
|
+
topic_spaces_configuration: Optional[pulumi.Input[Union['TopicSpacesConfigurationArgs', 'TopicSpacesConfigurationArgsDict']]] = None,
|
|
326
|
+
topics_configuration: Optional[pulumi.Input[Union['TopicsConfigurationArgs', 'TopicsConfigurationArgsDict']]] = None,
|
|
327
|
+
__props__=None):
|
|
328
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
329
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
330
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
331
|
+
if opts.id is None:
|
|
332
|
+
if __props__ is not None:
|
|
333
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
334
|
+
__props__ = NamespaceArgs.__new__(NamespaceArgs)
|
|
335
|
+
|
|
336
|
+
__props__.__dict__["identity"] = identity
|
|
337
|
+
__props__.__dict__["inbound_ip_rules"] = inbound_ip_rules
|
|
338
|
+
__props__.__dict__["is_zone_redundant"] = is_zone_redundant
|
|
339
|
+
__props__.__dict__["location"] = location
|
|
340
|
+
__props__.__dict__["minimum_tls_version_allowed"] = minimum_tls_version_allowed
|
|
341
|
+
__props__.__dict__["namespace_name"] = namespace_name
|
|
342
|
+
__props__.__dict__["private_endpoint_connections"] = private_endpoint_connections
|
|
343
|
+
__props__.__dict__["public_network_access"] = public_network_access
|
|
344
|
+
if resource_group_name is None and not opts.urn:
|
|
345
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
346
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
347
|
+
__props__.__dict__["sku"] = sku
|
|
348
|
+
__props__.__dict__["tags"] = tags
|
|
349
|
+
__props__.__dict__["topic_spaces_configuration"] = topic_spaces_configuration
|
|
350
|
+
__props__.__dict__["topics_configuration"] = topics_configuration
|
|
351
|
+
__props__.__dict__["name"] = None
|
|
352
|
+
__props__.__dict__["provisioning_state"] = None
|
|
353
|
+
__props__.__dict__["system_data"] = None
|
|
354
|
+
__props__.__dict__["type"] = None
|
|
355
|
+
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:Namespace")])
|
|
356
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
357
|
+
super(Namespace, __self__).__init__(
|
|
358
|
+
'azure-native:eventgrid/v20250215:Namespace',
|
|
359
|
+
resource_name,
|
|
360
|
+
__props__,
|
|
361
|
+
opts)
|
|
362
|
+
|
|
363
|
+
@staticmethod
|
|
364
|
+
def get(resource_name: str,
|
|
365
|
+
id: pulumi.Input[str],
|
|
366
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Namespace':
|
|
367
|
+
"""
|
|
368
|
+
Get an existing Namespace resource's state with the given name, id, and optional extra
|
|
369
|
+
properties used to qualify the lookup.
|
|
370
|
+
|
|
371
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
372
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
373
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
374
|
+
"""
|
|
375
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
376
|
+
|
|
377
|
+
__props__ = NamespaceArgs.__new__(NamespaceArgs)
|
|
378
|
+
|
|
379
|
+
__props__.__dict__["identity"] = None
|
|
380
|
+
__props__.__dict__["inbound_ip_rules"] = None
|
|
381
|
+
__props__.__dict__["is_zone_redundant"] = None
|
|
382
|
+
__props__.__dict__["location"] = None
|
|
383
|
+
__props__.__dict__["minimum_tls_version_allowed"] = None
|
|
384
|
+
__props__.__dict__["name"] = None
|
|
385
|
+
__props__.__dict__["private_endpoint_connections"] = None
|
|
386
|
+
__props__.__dict__["provisioning_state"] = None
|
|
387
|
+
__props__.__dict__["public_network_access"] = None
|
|
388
|
+
__props__.__dict__["sku"] = None
|
|
389
|
+
__props__.__dict__["system_data"] = None
|
|
390
|
+
__props__.__dict__["tags"] = None
|
|
391
|
+
__props__.__dict__["topic_spaces_configuration"] = None
|
|
392
|
+
__props__.__dict__["topics_configuration"] = None
|
|
393
|
+
__props__.__dict__["type"] = None
|
|
394
|
+
return Namespace(resource_name, opts=opts, __props__=__props__)
|
|
395
|
+
|
|
396
|
+
@property
|
|
397
|
+
@pulumi.getter
|
|
398
|
+
def identity(self) -> pulumi.Output[Optional['outputs.IdentityInfoResponse']]:
|
|
399
|
+
"""
|
|
400
|
+
Identity information for the Namespace resource.
|
|
401
|
+
"""
|
|
402
|
+
return pulumi.get(self, "identity")
|
|
403
|
+
|
|
404
|
+
@property
|
|
405
|
+
@pulumi.getter(name="inboundIpRules")
|
|
406
|
+
def inbound_ip_rules(self) -> pulumi.Output[Optional[Sequence['outputs.InboundIpRuleResponse']]]:
|
|
407
|
+
"""
|
|
408
|
+
This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled.
|
|
409
|
+
"""
|
|
410
|
+
return pulumi.get(self, "inbound_ip_rules")
|
|
411
|
+
|
|
412
|
+
@property
|
|
413
|
+
@pulumi.getter(name="isZoneRedundant")
|
|
414
|
+
def is_zone_redundant(self) -> pulumi.Output[Optional[bool]]:
|
|
415
|
+
"""
|
|
416
|
+
This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this
|
|
417
|
+
property is not specified explicitly by the user, its default value depends on the following conditions:
|
|
418
|
+
a. For Availability Zones enabled regions - The default property value would be true.
|
|
419
|
+
b. For non-Availability Zones enabled regions - The default property value would be false.
|
|
420
|
+
Once specified, this property cannot be updated.
|
|
421
|
+
"""
|
|
422
|
+
return pulumi.get(self, "is_zone_redundant")
|
|
423
|
+
|
|
424
|
+
@property
|
|
425
|
+
@pulumi.getter
|
|
426
|
+
def location(self) -> pulumi.Output[str]:
|
|
427
|
+
"""
|
|
428
|
+
Location of the resource.
|
|
429
|
+
"""
|
|
430
|
+
return pulumi.get(self, "location")
|
|
431
|
+
|
|
432
|
+
@property
|
|
433
|
+
@pulumi.getter(name="minimumTlsVersionAllowed")
|
|
434
|
+
def minimum_tls_version_allowed(self) -> pulumi.Output[Optional[str]]:
|
|
435
|
+
"""
|
|
436
|
+
Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported.
|
|
437
|
+
"""
|
|
438
|
+
return pulumi.get(self, "minimum_tls_version_allowed")
|
|
439
|
+
|
|
440
|
+
@property
|
|
441
|
+
@pulumi.getter
|
|
442
|
+
def name(self) -> pulumi.Output[str]:
|
|
443
|
+
"""
|
|
444
|
+
Name of the resource.
|
|
445
|
+
"""
|
|
446
|
+
return pulumi.get(self, "name")
|
|
447
|
+
|
|
448
|
+
@property
|
|
449
|
+
@pulumi.getter(name="privateEndpointConnections")
|
|
450
|
+
def private_endpoint_connections(self) -> pulumi.Output[Optional[Sequence['outputs.PrivateEndpointConnectionResponse']]]:
|
|
451
|
+
"""
|
|
452
|
+
List of private endpoint connections.
|
|
453
|
+
"""
|
|
454
|
+
return pulumi.get(self, "private_endpoint_connections")
|
|
455
|
+
|
|
456
|
+
@property
|
|
457
|
+
@pulumi.getter(name="provisioningState")
|
|
458
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
459
|
+
"""
|
|
460
|
+
Provisioning state of the namespace resource.
|
|
461
|
+
"""
|
|
462
|
+
return pulumi.get(self, "provisioning_state")
|
|
463
|
+
|
|
464
|
+
@property
|
|
465
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
466
|
+
def public_network_access(self) -> pulumi.Output[Optional[str]]:
|
|
467
|
+
"""
|
|
468
|
+
This determines if traffic is allowed over public network. By default it is enabled.
|
|
469
|
+
You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.PubSub.NamespaceProperties.InboundIpRules" />
|
|
470
|
+
"""
|
|
471
|
+
return pulumi.get(self, "public_network_access")
|
|
472
|
+
|
|
473
|
+
@property
|
|
474
|
+
@pulumi.getter
|
|
475
|
+
def sku(self) -> pulumi.Output[Optional['outputs.NamespaceSkuResponse']]:
|
|
476
|
+
"""
|
|
477
|
+
Represents available Sku pricing tiers.
|
|
478
|
+
"""
|
|
479
|
+
return pulumi.get(self, "sku")
|
|
480
|
+
|
|
481
|
+
@property
|
|
482
|
+
@pulumi.getter(name="systemData")
|
|
483
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
484
|
+
"""
|
|
485
|
+
The system metadata relating to the Event Grid resource.
|
|
486
|
+
"""
|
|
487
|
+
return pulumi.get(self, "system_data")
|
|
488
|
+
|
|
489
|
+
@property
|
|
490
|
+
@pulumi.getter
|
|
491
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
492
|
+
"""
|
|
493
|
+
Tags of the resource.
|
|
494
|
+
"""
|
|
495
|
+
return pulumi.get(self, "tags")
|
|
496
|
+
|
|
497
|
+
@property
|
|
498
|
+
@pulumi.getter(name="topicSpacesConfiguration")
|
|
499
|
+
def topic_spaces_configuration(self) -> pulumi.Output[Optional['outputs.TopicSpacesConfigurationResponse']]:
|
|
500
|
+
"""
|
|
501
|
+
Topic spaces configuration information for the namespace resource
|
|
502
|
+
"""
|
|
503
|
+
return pulumi.get(self, "topic_spaces_configuration")
|
|
504
|
+
|
|
505
|
+
@property
|
|
506
|
+
@pulumi.getter(name="topicsConfiguration")
|
|
507
|
+
def topics_configuration(self) -> pulumi.Output[Optional['outputs.TopicsConfigurationResponse']]:
|
|
508
|
+
"""
|
|
509
|
+
Topics configuration information for the namespace resource
|
|
510
|
+
"""
|
|
511
|
+
return pulumi.get(self, "topics_configuration")
|
|
512
|
+
|
|
513
|
+
@property
|
|
514
|
+
@pulumi.getter
|
|
515
|
+
def type(self) -> pulumi.Output[str]:
|
|
516
|
+
"""
|
|
517
|
+
Type of the resource.
|
|
518
|
+
"""
|
|
519
|
+
return pulumi.get(self, "type")
|
|
520
|
+
|