Skip to content

Commit

Permalink
Fixed the tool http link
Browse files Browse the repository at this point in the history
  • Loading branch information
sima-zhu authored and weshaggard committed Oct 26, 2020
1 parent e58b5ab commit 9b71770
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ members of the project's leadership.
## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at [http://contributor-covenant.org/version/1/4][version]
available at [https://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/4/
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Contributing to Azure Python SDK

If you would like to become an active contributor to this project please
follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](http://azure.github.io/guidelines/).
follow the instructions provided in [Microsoft Azure Projects Contribution Guidelines](https://azure.github.io/guidelines/).

## Building and Testing

Expand Down Expand Up @@ -143,4 +143,4 @@ This tox test( devtest) will fail if installed dependent packages are not dev bu
## Code of Conduct
This project's code of conduct can be found in the
[CODE_OF_CONDUCT.md file](https://github.com/Azure/azure-sdk-for-python/blob/master/CODE_OF_CONDUCT.md)
(v1.4.0 of the http://contributor-covenant.org/ CoC).
(v1.4.0 of the https://contributor-covenant.org/ CoC).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Last stable versions of packages that have been provided for usage with Azure an

### Management: New Releases
A new set of management libraries that follow the [Azure SDK Design Guidelines for Python](https://azure.github.io/azure-sdk/python/guidelines/) are now available. These new libraries provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more.
Documentation and code samples for these new libraries can be found [here](http://aka.ms/azsdk/python/mgmt). In addition, a migration guide that shows how to transition from older versions of libraries is located [here](https://github.com/Azure/azure-sdk-for-python/blob/master/doc/sphinx/mgmt_quickstart.rst#migration-guide).
Documentation and code samples for these new libraries can be found [here](https://aka.ms/azsdk/python/mgmt). In addition, a migration guide that shows how to transition from older versions of libraries is located [here](https://github.com/Azure/azure-sdk-for-python/blob/master/doc/sphinx/mgmt_quickstart.rst#migration-guide).

You can find the [most up to date list of all of the new packages on our page](https://azure.github.io/azure-sdk/releases/latest/mgmt/python.html)

Expand Down
12 changes: 6 additions & 6 deletions sdk/core/azure-servicemanagement-legacy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ You can download your Azure publish settings file and use the certificate that
is embedded in that file to create the client certificate. The server
certificate already exists, so you won't need to upload one.

To do this, download your [publish settings](http://go.microsoft.com/fwlink/?LinkID=301775)
To do this, download your [publish settings](https://go.microsoft.com/fwlink/?LinkID=301775)
then use this code to create the .pem file.

```python
Expand All @@ -93,7 +93,7 @@ subscription in the publish settings, the first one will be used.

### Creating and uploading new certificate with OpenSSL

To create the .pem file using [OpenSSL](http://www.openssl.org), execute this:
To create the .pem file using [OpenSSL](https://www.openssl.org), execute this:

```shell
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem
Expand All @@ -106,7 +106,7 @@ openssl x509 -inform pem -in mycert.pem -outform der -out mycert.cer

After you have created the certificate, you will need to upload the .cer
file to Microsoft Azure via the "Upload" action of the "Settings" tab of
the [management portal](http://manage.windowsazure.com).
the [management portal](https://manage.windowsazure.com).


## ServiceManagementService
Expand Down Expand Up @@ -212,7 +212,7 @@ sms.wait_for_operation_status(result.request_id, timeout=600)
# Need Help?

Be sure to check out the Microsoft Azure [Developer Forums on Stack
Overflow](http://go.microsoft.com/fwlink/?LinkId=234489) if you have
Overflow](https://go.microsoft.com/fwlink/?LinkId=234489) if you have
trouble with the provided code.


Expand All @@ -221,7 +221,7 @@ trouble with the provided code.
If you would like to become an active contributor to this project please
follow the instructions provided in [Microsoft Azure Projects
Contribution
Guidelines](http://azure.github.io/guidelines.html).
Guidelines](https://azure.github.io/guidelines.html).

If you encounter any bugs with the library please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
Expand All @@ -231,7 +231,7 @@ section of the project.
# Learn More

[Microsoft Azure Python Developer
Center](http://azure.microsoft.com/develop/python/)
Center](https://azure.microsoft.com/develop/python/)


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-servicemanagement-legacy%2FREADME.png)
4 changes: 2 additions & 2 deletions sdk/eventhub/azure-eventhub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ one active consumer for a given partition and consumer group pairing. Each activ
its partition; if there are multiple readers on the same partition, then they will receive duplicate events.

For more concepts and deeper discussion, see: [Event Hubs Features](https://docs.microsoft.com/azure/event-hubs/event-hubs-features).
Also, the concepts for AMQP are well documented in [OASIS Advanced Messaging Queuing Protocol (AMQP) Version 1.0](http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-overview-v1.0-os.html).
Also, the concepts for AMQP are well documented in [OASIS Advanced Messaging Queuing Protocol (AMQP) Version 1.0](https://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-overview-v1.0-os.html).

## Examples

Expand Down Expand Up @@ -434,7 +434,7 @@ PR appropriately (e.g., label, comment). Simply follow the instructions provided
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.

[avro]: http://avro.apache.org/
[avro]: https://avro.apache.org/
[schemaregistry_service]: https://aka.ms/schemaregistry
[schemaregistry_repo]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/schemaregistry/azure-schemaregistry
[schemaregistry_avroserializer_repo]: https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/schemaregistry/azure-schemaregistry-avroserializer
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-share/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Four different clients are provided to interact with the various components of t
create, delete, or enumerate the contents of an immediate or nested subdirectory, and includes operations to create
and delete files within it. For operations relating to a specific subdirectory or file, a client for that entity can
also be retrieved using the `get_subdirectory_client` and `get_file_client` functions.
4. [ShareFileClient](http://aka.ms/azsdk-python-storage-fileshare-sharefileclient) -
4. [ShareFileClient](https://aka.ms/azsdk-python-storage-fileshare-sharefileclient) -
this client represents interaction with a specific file (which need not exist yet). It provides operations to
upload, download, create, delete, and copy a file.

Expand Down
2 changes: 1 addition & 1 deletion tools/azure-devtools/doc/scenario_base_tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ of which the first takes precedence:
"Live" and "playback" mode are actually just shorthand for recording modes
in the underlying VCR.py package;
they correspond to "all" and "once"
as described in the [VCR.py documentation](http://vcrpy.readthedocs.io/en/latest/usage.html#record-modes).
as described in the [VCR.py documentation](https://vcrpy.readthedocs.io/en/latest/usage.html#record-modes).

### Subclassing ReplayableTest and features

Expand Down
2 changes: 1 addition & 1 deletion tools/azure-sdk-tools/packaging_tools/templates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For a more complete view of Azure libraries, see the [azure sdk python release](
# Usage

{% if is_arm %}
To learn how to use this package, see the [quickstart guide](http://aka.ms/azsdk/python/mgmt)
To learn how to use this package, see the [quickstart guide](https://aka.ms/azsdk/python/mgmt)
{% endif %}

{% if is_arm %}
Expand Down

0 comments on commit 9b71770

Please sign in to comment.