Skip to content

Commit 4cc1b13

Browse files
authored
Merge pull request #288118 from MicrosoftDocs/main
10/9/2024 AM Publish
2 parents 64cd810 + a34ba02 commit 4cc1b13

28 files changed

+484
-521
lines changed

articles/api-management/sap-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ Also, configure authentication to your backend using an appropriate method for y
139139

140140
## Production considerations
141141

142-
* See an [example end-to-end scenario](https://blogs.sap.com/2021/08/12/.net-speaks-odata-too-how-to-implement-azure-app-service-with-sap-odata-gateway/) to integrate API Management with an SAP gateway.
143-
* Control access to an SAP backend using API Management policies. For example, if the API is imported as an OData API, use the [validate OData request](validate-odata-request-policy.md) policy. See also policy snippets for [SAP principal propagation](https://github.com/Azure/api-management-policy-snippets/blob/master/examples/Request%20OAuth2%20access%20token%20from%20SAP%20using%20AAD%20JWT%20token.xml) and [fetching an X-CSRF token](https://github.com/Azure/api-management-policy-snippets/blob/master/examples/Get%20X-CSRF%20token%20from%20SAP%20gateway%20using%20send%20request.policy.xml).
142+
* See an [example end-to-end scenario](https://community.powerplatform.com/blogs/post/?postid=c6a609ab-3556-ef11-a317-6045bda95bf0) to integrate API Management with an SAP gateway.
143+
* Control access to an SAP backend using API Management policies. For example, if the API is imported as an OData API, use the [validate OData request](validate-odata-request-policy.md) policy. See also policy snippets for [SAP principal propagation for SAP ECC or S/4HANA](https://github.com/Azure/api-management-policy-snippets/blob/master/examples/Request%20OAuth2%20access%20token%20from%20SAP%20using%20AAD%20JWT%20token.xml) or [SAP SuccessFactors](https://github.com/Azure/api-management-policy-snippets/blob/master/examples/Request%20OAuth2%20access%20token%20from%20SuccessFactors%20using%20AAD%20JWT%20token.xml) and [fetching an X-CSRF token](https://github.com/Azure/api-management-policy-snippets/blob/master/examples/Get%20X-CSRF%20token%20from%20SAP%20gateway%20using%20send%20request.policy.xml).
144144
* For guidance to deploy, manage, and migrate APIs at scale, see:
145145
* [Automated API deployments with APIOps](/azure/architecture/example-scenario/devops/automated-api-deployments-apiops)
146146
* [CI/CD for API Management using Azure Resource Manager templates](devops-api-development-templates.md).

articles/azure-app-configuration/howto-import-export-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: malev
1414

1515
Azure App Configuration supports data import and export operations. Use these operations to work with configuration data in bulk and exchange data between your App Configuration store and code project. For example, you can set up one App Configuration store for testing and another one for production. You can copy application settings between them so that you don't have to enter data twice.
1616

17-
This article provides a guide for importing and exporting data using either the [Azure portal](https://portal.azure.com) or the [Azure CLI](./scripts/cli-import.md). If you have adopted [Configuration as Code](./howto-best-practices.md#configuration-as-code) and manage your configurations in GitHub or Azure Devops, you can set up ongoing configuration file import using [GitHub Actions](./push-kv-github-action.md) or use the [Azure Pipeline Push Task](./push-kv-devops-pipeline.md).
17+
This article provides a guide for importing and exporting data using either the [Azure portal](https://portal.azure.com) or the [Azure CLI](./scripts/cli-import.md). If you have adopted [Configuration as Code](./howto-best-practices.md#configuration-as-code) and manage your configurations in GitHub or Azure DevOps, you can set up ongoing configuration file import using [GitHub Actions](./push-kv-github-action.md) or use the [Azure Pipeline Push Task](./push-kv-devops-pipeline.md).
1818

1919
## Import data
2020

articles/azure-cache-for-redis/cache-how-to-upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This table contains the information for which Redis version are available in eac
3636
| Tier | Available Redis version |
3737
|:---------------------------- |:------------------------------------:|
3838
| Basic, Standard, Premium | 6.0 (GA) |
39-
| Enterprise, Enterprise Flash | Redis 6.0 (GA), Redis 7.2 (preview) |
39+
| Enterprise, Enterprise Flash | 7.2 (GA) |
4040

4141
## How to upgrade - Basic, Standard, and Premium tiers
4242

articles/azure-government/documentation-government-get-started-connect-to-storage.md

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -138,39 +138,6 @@ These endpoint differences must be taken into account when you connect to storag
138138
print("\t Blob name: " + blob.name)
139139
```
140140

141-
#### PHP
142-
1. Download the [Azure Storage SDK for PHP](https://github.com/Azure/azure-sdk-for-php).
143-
2. The code below accesses Azure Table Storage using the Azure Storage API.
144-
In the `connectionString` variable, you'll notice that there's a `TableEndpoint` parameter.
145-
Depending on which service you're using, you must define the parameter and set it to the endpoint for that service:
146-
147-
- BlobEndpoint= //ends with 'blob.core.usgovcloudapi.net'
148-
- QueueEndpoint= //ends with 'queue.core.usgovcloudapi.net'
149-
- TableEndpoint= //ends with 'table.core.usgovcloudapi.net'
150-
>[!Note]
151-
> You can find these endpoints by navigating to your Storage Account from the [portal](https://portal.azure.us).
152-
> **Paste** in your storage account name, key, and service endpoint in the `connectionString` variable.
153-
>
154-
155-
```php
156-
<?php
157-
require_once "vendor/autoload.php";
158-
use WindowsAzure\Common\ServicesBuilder;
159-
use MicrosoftAzure\Storage\Common\ServiceException;
160-
$connectionString = 'DefaultEndpointsProtocol=http;AccountName=<accountname>;AccountKey=<accountkey>;TableEndpoint=http://<storageaccountname>.table.core.usgovcloudapi.net/';
161-
162-
$tableRestProxy = ServicesBuilder::getInstance()->createTableService($connectionString);
163-
try {
164-
// Create table.
165-
$tableRestProxy->createTable("test");
166-
}
167-
catch(ServiceException $e){
168-
$code = $e->getCode();
169-
$error_message = $e->getMessage();
170-
}
171-
?>
172-
```
173-
174141
## Next steps
175142

176143
- Read more about [Azure Storage](../storage/index.yml).

0 commit comments

Comments
 (0)