Azure SDK for Python Url
Azure SDK for Python URL 明细表
1 AZURE_PUBLIC_CLOUD = Cloud( 2 'AzureCloud', 3 endpoints=CloudEndpoints( 4 management='https://management.core.windows.net/', 5 resource_manager='https://management.azure.com/', 6 sql_management='https://management.core.windows.net:8443/', 7 batch_resource_id='https://batch.core.windows.net/', 8 gallery='https://gallery.azure.com/', 9 active_directory='https://login.microsoftonline.com', 10 active_directory_resource_id='https://management.core.windows.net/', 11 active_directory_graph_resource_id='https://graph.windows.net/', 12 microsoft_graph_resource_id='https://graph.microsoft.com/'), 13 suffixes=CloudSuffixes( 14 storage_endpoint='core.windows.net', 15 keyvault_dns='.vault.azure.net', 16 sql_server_hostname='.database.windows.net', 17 azure_datalake_store_file_system_endpoint='azuredatalakestore.net', 18 azure_datalake_analytics_catalog_and_job_endpoint='azuredatalakeanalytics.net')) 19 20 AZURE_CHINA_CLOUD = Cloud( 21 'AzureChinaCloud', 22 endpoints=CloudEndpoints( 23 management='https://management.core.chinacloudapi.cn/', 24 resource_manager='https://management.chinacloudapi.cn', 25 sql_management='https://management.core.chinacloudapi.cn:8443/', 26 batch_resource_id='https://batch.chinacloudapi.cn/', 27 gallery='https://gallery.chinacloudapi.cn/', 28 active_directory='https://login.chinacloudapi.cn', 29 active_directory_resource_id='https://management.core.chinacloudapi.cn/', 30 active_directory_graph_resource_id='https://graph.chinacloudapi.cn/', 31 microsoft_graph_resource_id='https://microsoftgraph.chinacloudapi.cn/'), 32 suffixes=CloudSuffixes( 33 storage_endpoint='core.chinacloudapi.cn', 34 keyvault_dns='.vault.azure.cn', 35 sql_server_hostname='.database.chinacloudapi.cn')) 36 37 AZURE_US_GOV_CLOUD = Cloud( 38 'AzureUSGovernment', 39 endpoints=CloudEndpoints( 40 management='https://management.core.usgovcloudapi.net/', 41 resource_manager='https://management.usgovcloudapi.net/', 42 sql_management='https://management.core.usgovcloudapi.net:8443/', 43 batch_resource_id='https://batch.core.usgovcloudapi.net/', 44 gallery='https://gallery.usgovcloudapi.net/', 45 active_directory='https://login.microsoftonline.us', 46 active_directory_resource_id='https://management.core.usgovcloudapi.net/', 47 active_directory_graph_resource_id='https://graph.windows.net/', 48 microsoft_graph_resource_id='https://graph.microsoft.us/'), 49 suffixes=CloudSuffixes( 50 storage_endpoint='core.usgovcloudapi.net', 51 keyvault_dns='.vault.usgovcloudapi.net', 52 sql_server_hostname='.database.usgovcloudapi.net')) 53 54 AZURE_GERMAN_CLOUD = Cloud( 55 'AzureGermanCloud', 56 endpoints=CloudEndpoints( 57 management='https://management.core.cloudapi.de/', 58 resource_manager='https://management.microsoftazure.de', 59 sql_management='https://management.core.cloudapi.de:8443/', 60 batch_resource_id='https://batch.cloudapi.de/', 61 gallery='https://gallery.cloudapi.de/', 62 active_directory='https://login.microsoftonline.de', 63 active_directory_resource_id='https://management.core.cloudapi.de/', 64 active_directory_graph_resource_id='https://graph.cloudapi.de/', 65 microsoft_graph_resource_id='https://graph.microsoft.de/'), 66 suffixes=CloudSuffixes( 67 storage_endpoint='core.cloudapi.de', 68 keyvault_dns='.vault.microsoftazure.de', 69 sql_server_hostname='.database.cloudapi.de'))
python, equal to anything!