-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Azure/master
Update /
- Loading branch information
Showing
11,663 changed files
with
1,946,147 additions
and
820,575 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Support | ||
|
||
## How to file issues and get help | ||
|
||
Customers with an [Azure support plan](https://azure.microsoft.com/support/options/) can open an [Azure support ticket](https://azure.microsoft.com/support/create-ticket/). | ||
**We recommend this option if your problem requires immediate attention.** | ||
|
||
### Github issues | ||
We use [GitHub Issues](https://github.com/Azure/azure-sdk-for-python/issues/new/choose) to track bugs, questions, and feature requests. | ||
GitHub issues are free, but **response time is not guaranteed.** See [GitHub issues support process](https://devblogs.microsoft.com/azure-sdk/github-issue-support-process/) for more details. | ||
|
||
### Community resources | ||
- Search for similar issues in [our GitHub repository](https://github.com/Azure/azure-sdk-for-python/issues) | ||
- Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/azure-sdk-python) and tag it with azure-sdk-python | ||
- Share or upvote feature requests on [Feedback Page](https://feedback.azure.com/forums/34192--general-feedback). | ||
- Take a look at the [Azure SDK blog](https://devblogs.microsoft.com/azure-sdk/). | ||
- Chat with other community members on [gitter](https://gitter.im/Azure/azure-sdk-for-python?source=orgpage) | ||
- Ask a question on [Twitter](https://twitter.com/AzureSDK) | ||
- Ask a question at [Microsoft Q&A](https://docs.microsoft.com/answers/products/azure?WT.mc_id=Portal-Microsoft_Azure_Support&product=all) | ||
- Ask a question at [Microsoft Tech Community](https://techcommunity.microsoft.com/t5/azure/ct-p/Azure) | ||
|
||
### Security bugs | ||
Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center(secure@microsoft.com). | ||
You should receive a response within 24 hours. | ||
Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://www.microsoft.com/msrc/faqs-report-an-issue?rtc=1) | ||
|
||
## Microsoft Support Policy | ||
|
||
Please refer to [Azure SDK Support and Lifecycle information](https://azure.github.io/azure-sdk/policies_support.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Cloud Configuration will be splat into parameters of `Add-AzEnvironment`. It | ||
# should be JSON in the form (not all fields are required): | ||
# { | ||
# "Name": "<environment name>", | ||
# "PublishSettingsFileUrl": "<publish settings file url>", | ||
# "ServiceEndpoint": "<service endpoint>", | ||
# "ManagementPortalUrl": "<management portal url>", | ||
# "ActiveDirectoryEndpoint": "<active directory endpoint>", | ||
# "ActiveDirectoryServiceEndpointResourceId": "<active directory service endpoint resource id>", | ||
# "ResourceManagerEndpoint": "<resource manager endpoint>", | ||
# "GalleryEndpoint": "<gallery endpoint>", | ||
# "GraphEndpoint": "<graph endpoint>", | ||
# "GraphAudience": "<graph audience>", | ||
# "AzureKeyVaultDnsSuffix": "<key vault suffix>", | ||
# "AzureKeyVaultServiceEndpointResourceId": "<key vault service endpoint resource id>" | ||
# } | ||
|
||
steps: | ||
- bash: sudo chown -R runner ~/.Azure | ||
displayName: (MacOS) Grant access to ~/.Azure | ||
condition: contains(variables['OSVmImage'], 'mac') | ||
|
||
- task: Powershell@2 | ||
displayName: Register Dogfood environment | ||
inputs: | ||
targetType: inline | ||
pwsh: true | ||
script: | | ||
eng/common/scripts/Import-AzModules.ps1 | ||
$environmentSpec = @" | ||
$(env-config-dogfood) | ||
"@ | ConvertFrom-Json -AsHashtable; | ||
Add-AzEnvironment @environmentSpec |
Oops, something went wrong.