Skip to content

Commit bd33baf

Browse files
authored
***NO_CI*** [Doc] Update references to wiki pages (#46169)
Signed-off-by: Paul Van Eck <paulvaneck@microsoft.com>
1 parent 36c1923 commit bd33baf

39 files changed

Lines changed: 94 additions & 94 deletions

File tree

eng/tools/azure-sdk-tools/devtools_testutils/mgmt_settings_fake.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
AZURE_STORAGE_CONNECTION_STRING = "DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=NzhL3hKZbJBuJ2484dPTR+xF30kYaWSSCbs2BzLgVVI1woqeST/1IgqaLm6QAOTxtGvxctSNbIR/1hW8yH+bJg==;EndpointSuffix=core.windows.net"
3232

3333
# Read for details of this file:
34-
# https://github.com/Azure/azure-sdk-for-python/wiki/Contributing-to-the-tests
34+
# https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/mgmt/tests.md
3535

3636

3737
def get_azure_core_credentials(**kwargs):

scripts/quickstart_tooling_dpg/template_tests/test_smoke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from testcase import {{ test_prefix.capitalize() }}Test, {{ test_prefix.capitalize() }}Preparer
99

1010

11-
# For more info about how to write and run test, please refer to https://github.com/Azure/azure-sdk-for-python/wiki/Dataplane-Codegen-Quick-Start-for-Test
11+
# For more info about how to write and run test, please refer to https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/tests.md
1212
class {{ test_prefix.capitalize() }}SmokeTest({{ test_prefix.capitalize() }}Test):
1313

1414

scripts/quickstart_tooling_dpg/template_tests/test_smoke_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from testcase_async import {{ test_prefix.capitalize() }}AsyncTest
1010

1111

12-
# For more info about how to write and run test, please refer to https://github.com/Azure/azure-sdk-for-python/wiki/Dataplane-Codegen-Quick-Start-for-Test
12+
# For more info about how to write and run test, please refer to https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/tests.md
1313
class {{ test_prefix.capitalize() }}SmokeAsyncTest({{ test_prefix.capitalize() }}AsyncTest):
1414

1515
@{{ test_prefix.capitalize() }}Preparer()

sdk/batch/azure-batch/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pip install azure-batch azure-identity
2222
### Prerequisites
2323
* An Azure subscription. If you don't have one, [create an account for free][azure_sub]
2424
* A [Batch account][azure_batch] with a linked [Storage account][azure_storage]
25-
* Python 3.9 or later. For more details, please see the [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy)
25+
* Python 3.9 or later. For more details, please see the [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md)
2626

2727
### Authenticate the client
2828

@@ -47,7 +47,7 @@ client = BatchClient(
4747

4848
#### Authenticate with Shared Key Credentials
4949

50-
You can also use Shared Key authentication to sign into your Batch account. This method uses your Batch account access keys to authenticate Azure commands for the Batch service.
50+
You can also use Shared Key authentication to sign into your Batch account. This method uses your Batch account access keys to authenticate Azure commands for the Batch service.
5151

5252
```python
5353
from azure.core.credentials import AzureNamedKeyCredential
@@ -135,7 +135,7 @@ pool = batch_client.pool.create(
135135
"userAssignedIdentities": {
136136
"/subscriptions/"+SUBSCRIPTION_ID+"/resourceGroups/"+GROUP_NAME+"/providers/Microsoft.ManagedIdentity/userAssignedIdentities/"+"Your Identity Name": {}
137137
}
138-
138+
139139
}
140140
}
141141
)
@@ -161,7 +161,7 @@ vm_config = models.VirtualMachineConfiguration(
161161

162162
pool_spec = models.BatchPoolCreateOptions(
163163
id="my-pool",
164-
vm_size="standard_d2_v2",
164+
vm_size="standard_d2_v2",
165165
target_dedicated_nodes=1,
166166
virtual_machine_configuration=vm_config
167167
)
@@ -549,4 +549,4 @@ section of the project.
549549
[azure_batch]: https://azure.microsoft.com/products/batch
550550
[azure_storage]: https://azure.microsoft.com/products/category/storage
551551

552-
[batch_source_code]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/batch/azure-batch
552+
[batch_source_code]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/batch/azure-batch

sdk/cognitivelanguage/azure-ai-language-questionanswering/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
3232
* `QuestionAnsweringProjectsClient` was renamed to `AuthoringClient`.
3333
* The `azure.ai.language.questionanswering.projects` namespace was renamed to `azure.ai.language.questionanswering.authoring`
34-
* Authoring client methods: `begin_deploy_project`, `begin_import_assets`, `begin_update_sources`
34+
* Authoring client methods: `begin_deploy_project`, `begin_import_assets`, `begin_update_sources`
3535
and `begin_update_qnas` now return a response upon completion of the long-running operation.
3636
* Keyword argument `format` renamed to `file_format` for `begin_export` and `begin_import_assets`.
3737

3838
### Bugs Fixed
3939
* Fixed a bug where the client-level keyword argument `default_language` was not being honored for `get_answers_from_text`.
4040

4141
### Other Changes
42-
* Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, see [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
42+
* Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, see [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
4343
* Dropped dependency on `msrest`.
4444

4545
## 1.1.0b2 (2022-07-19)
@@ -115,4 +115,4 @@
115115
## 1.0.0b1 (2021-07-27)
116116

117117
### Features Added
118-
* Initial release - supports querying from text records and knowledge bases.
118+
* Initial release - supports querying from text records and knowledge bases.

sdk/cognitivelanguage/azure-ai-textanalytics/CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This version of the client library defaults to the service API version `2023-04-
5050
- Renamed client method `begin_abstractive_summary` to `begin_abstract_summary`.
5151
- Removed `dynamic_classification` client method and related types: `DynamicClassificationResult` and `ClassificationType`.
5252
- Removed keyword arguments `fhir_version` and `document_type` from `begin_analyze_healthcare_entities` and `AnalyzeHealthcareEntitiesAction`.
53-
- Removed property `fhir_bundle` from `AnalyzeHealthcareEntitiesResult`.
53+
- Removed property `fhir_bundle` from `AnalyzeHealthcareEntitiesResult`.
5454
- Removed enum `HealthcareDocumentType`.
5555
- Removed property `resolutions` from `CategorizedEntity`.
5656
- Removed models and enums related to resolutions: `ResolutionKind`, `AgeResolution`, `AreaResolution`,
@@ -87,7 +87,7 @@ This version of the client library defaults to the service API version `2022-10-
8787

8888
### Other Changes
8989

90-
- Improved static typing in the client library.
90+
- Improved static typing in the client library.
9191

9292
## 5.3.0b1 (2022-11-17)
9393

@@ -101,7 +101,7 @@ This version of the client library defaults to the service API version `2022-10-
101101
- Added property `confidence_score` to `HealthcareRelation`.
102102
- Added enum `HealthcareDocumentType`.
103103
- Added property `resolutions` to `CategorizedEntity`.
104-
- Added models and enums related to resolutions: `BaseResolution`, `ResolutionKind`, `AgeResolution`, `AreaResolution`,
104+
- Added models and enums related to resolutions: `BaseResolution`, `ResolutionKind`, `AgeResolution`, `AreaResolution`,
105105
`BooleanResolution`, `CurrencyResolution`, `DateTimeResolution`, `InformationResolution`, `LengthResolution`,
106106
`NumberResolution`, `NumericRangeResolution`, `OrdinalResolution`, `SpeedResolution`, `TemperatureResolution`,
107107
`TemporalSpanResolution`, `VolumeResolution`, `WeightResolution`, `AgeUnit`, `AreaUnit`, `TemporalModifier`,
@@ -163,7 +163,7 @@ The version of this client library defaults to the API version `2022-05-01`.
163163

164164
### Other Changes
165165

166-
- Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, see [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
166+
- Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, see [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
167167

168168

169169
## 5.2.0b4 (2022-05-18)
@@ -534,4 +534,4 @@ This version uses a next-generation code generator that *might* introduce breaki
534534

535535
## 0.1.0 (2018-01-12)
536536

537-
* Initial Release
537+
* Initial Release

sdk/communication/azure-communication-callautomation/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# your package.
99

1010
# this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way
11-
# up from python 3.7. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging
11+
# up from python 3.7. Reference here: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/packaging.md
1212

1313
PACKAGE_NAME = "azure-communication-callautomation"
1414
PACKAGE_PPRINT_NAME = "Communication Call Automation"

sdk/communication/azure-communication-chat/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
### Other Changes
2525

26-
Python 2.7 is no longer supported. Please use Python version 3.7 or later. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
26+
Python 2.7 is no longer supported. Please use Python version 3.7 or later. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
2727

2828
## 1.1.0 (2021-09-15)
2929

sdk/communication/azure-communication-chat/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# your package.
99

1010
# this setup.py is set up in a specific way to keep the azure* and azure-mgmt-* namespaces WORKING all the way
11-
# up from python 3.7. Reference here: https://github.com/Azure/azure-sdk-for-python/wiki/Azure-packaging
11+
# up from python 3.7. Reference here: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/packaging.md
1212

1313
PACKAGE_NAME = "azure-communication-chat"
1414
PACKAGE_PPRINT_NAME = "Communication Chat"

sdk/communication/azure-communication-email/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The public release of the Azure Communication Services SDK for Email has the fol
4141
- The importance property was removed. Email importance can now be specified through either the `x-priority` or `x-msmail-priority` custom headers.
4242

4343
### Other Changes
44-
Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
44+
Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/python_version_support_policy.md).
4545

4646
## 1.0.0b1 (2022-08-09)
4747

0 commit comments

Comments
 (0)