Skip to content

Commit e54db88

Browse files
authored
Merge branch 'MicrosoftDocs:main' into 2024_12-Monthly-broken-links-fix-duongau
2 parents 176b362 + 716578a commit e54db88

File tree

11 files changed

+220
-31
lines changed

11 files changed

+220
-31
lines changed

articles/azure-fluid-relay/concepts/version-compatibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ npx install-peerdeps @fluidframework/azure-client
4141
| fluid-framework | [1.2.4][] |
4242
| @fluidframework/azure-service-utils | [1.0.2][] |
4343

44-
[1.0.2]: https://fluidframework.com/docs/updates/v1.0.0/
45-
[1.2.4]: https://fluidframework.com/docs/updates/v1.0.0/
44+
[1.0.2]: https://fluidframework.com/docs/v1/
45+
[1.2.4]: https://fluidframework.com/docs/v1/
4646

4747
> [!NOTE]
4848
> Fluid packages follow npm semver versioning standards. Patch updates are only applied to the latest minor version. To stay current ensure you are on

articles/azure-resource-manager/bicep/bicep-functions-deployment.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,49 @@ title: Bicep functions - deployment
33
description: Describes the functions to use in a Bicep file to retrieve deployment information.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 06/26/2024
6+
ms.date: 12/10/2024
77
---
88

99
# Deployment functions for Bicep
1010

1111
This article describes the Bicep functions for getting values related to the current deployment.
1212

13+
## deployer
14+
15+
`deployer()`
16+
17+
Returns the information about the current deployment principal.
18+
19+
Namespace: [az](bicep-functions.md#namespaces-for-functions).
20+
21+
### Return value
22+
23+
This function returns the information about the current deployment principal, including tenant ID and object ID.
24+
25+
```json
26+
{
27+
"objectId": "",
28+
"tenantId": ""
29+
}
30+
```
31+
32+
### Example
33+
34+
The following example Bicep file returns the deployer object.
35+
36+
```bicep
37+
output deployer object = deployer()
38+
```
39+
40+
The preceding example returns the following object:
41+
42+
```json
43+
{
44+
"objectId":"aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb",
45+
"tenantId":"aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e"
46+
}
47+
```
48+
1349
## deployment
1450

1551
`deployment()`

articles/azure-resource-manager/bicep/bicep-functions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bicep functions
33
description: Describes the functions to use in a Bicep file to retrieve values, work with strings and numerics, and retrieve deployment information.
44
ms.topic: reference
55
ms.custom: devx-track-bicep
6-
ms.date: 12/06/2024
6+
ms.date: 12/10/2024
77
---
88

99
# Bicep functions
@@ -74,6 +74,7 @@ The following functions are available for working with dates. All of these funct
7474

7575
The following functions are available for getting values related to the deployment. All of these functions are in the `az` namespace.
7676

77+
* [deployer](./bicep-functions-deployment.md#deployer)
7778
* [deployment](./bicep-functions-deployment.md#deployment)
7879
* [environment](./bicep-functions-deployment.md#environment)
7980

articles/azure-resource-manager/templates/template-functions-deployment.md

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ title: Template functions - deployment
33
description: Describes the functions to use in an Azure Resource Manager template (ARM template) to retrieve deployment information.
44
ms.topic: reference
55
ms.custom: devx-track-arm-template
6-
ms.date: 06/26/2024
6+
ms.date: 12/10/2024
77
---
88

99
# Deployment functions for ARM templates
1010

1111
Resource Manager provides the following functions for getting values related to the current deployment of your Azure Resource Manager template (ARM template):
1212

13+
* [developer](#deployer)
1314
* [deployment](#deployment)
1415
* [environment](#environment)
1516
* [parameters](#parameters)
@@ -20,6 +21,52 @@ To get values from resources, resource groups, or subscriptions, see [Resource f
2021
> [!TIP]
2122
> We recommend [Bicep](../bicep/overview.md) because it offers the same capabilities as ARM templates and the syntax is easier to use. To learn more, see [deployment](../bicep/bicep-functions-deployment.md) functions.
2223
24+
## deployer
25+
26+
`deployer()`
27+
28+
Returns the information about the current deployment principal.
29+
30+
In Bicep, use the [deployer](../bicep/bicep-functions-deployment.md#deployer) function.
31+
32+
### Return value
33+
34+
This function returns the information about the current deployment principal, including tenant ID and object ID.
35+
36+
```json
37+
{
38+
"objectId": "",
39+
"tenantId": ""
40+
}
41+
```
42+
43+
### Example
44+
45+
The following example returns the deployer object.
46+
47+
```json
48+
{
49+
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
50+
"contentVersion": "1.0.0.0",
51+
"resources": [],
52+
"outputs": {
53+
"developerOutput": {
54+
"type": "object",
55+
"value": "[developer()]"
56+
}
57+
}
58+
}
59+
```
60+
61+
The preceding example returns the following object:
62+
63+
```json
64+
{
65+
"objectId":"aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb",
66+
"tenantId":"aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e"
67+
}
68+
```
69+
2370
## deployment
2471

2572
`deployment()`

articles/azure-resource-manager/templates/template-functions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Template functions
33
description: Describes the functions to use in an Azure Resource Manager template (ARM template) to retrieve values, work with strings and numerics, and retrieve deployment information.
44
ms.topic: reference
55
ms.custom: devx-track-arm-template
6-
ms.date: 05/10/2024
6+
ms.date: 12/10/2024
77
---
88

99
# ARM template functions
@@ -122,6 +122,7 @@ For Bicep files, use the [date](../bicep/bicep-functions-date.md) functions.
122122

123123
Resource Manager provides the following functions for getting values from sections of the template and values related to the deployment:
124124

125+
* [deployer](template-functions-deployment.md#deployer)
125126
* [deployment](template-functions-deployment.md#deployment)
126127
* [environment](template-functions-deployment.md#environment)
127128
* [parameters](template-functions-deployment.md#parameters)

articles/cloud-services/cloud-services-guestos-msrc-releases.md

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,69 @@ author: jejackson
77
ms.assetid: d0a272a9-ed01-4f4c-a0b3-bd5e841bdd77
88
ms.service: azure-cloud-services-classic
99
ms.topic: article
10-
ms.date: 09/03/2024
10+
ms.date: 12/11/2024
1111
ms.author: jejackson
1212
ms.custom: compute-evergreen
1313
---
1414

1515
# Azure Guest OS
1616
The following tables show the Microsoft Security Response Center (MSRC) updates applied to the Azure Guest OS. Search this article to determine if a particular update applies to your Guest OS. Updates always carry forward for the particular [family][family-explain] they were introduced in.
1717

18+
## October 2024 Guest OS
19+
| Product Category | Parent KB Article | Vulnerability Description | Guest OS | Date First Introduced |
20+
| --- | --- | --- | --- | --- |
21+
| Rel 24-10 | 5044281 | Latest Cumulative Update(LCU) | [7.46] | 08-Oct-24
22+
| Rel 24-10 | 5044277 | Latest Cumulative Update(LCU) | [6.76] | 08-Oct-24
23+
| Rel 24-10 | 5044293 | Latest Cumulative Update(LCU) | [5.100] | 08-Oct-24
24+
| Rel 24-10 | 5044011 | .NET Framework 3.5 Security and Quality Rollup | [2.156] | 08-Oct-24
25+
| Rel 24-10 | 5044019 | .NET Framework 4.7.2 Cumulative Update LKG | [2.156] | 08-Oct-24
26+
| Rel 24-10 | 5044012 | .NET Framework 3.5 Security and Quality Rollup LKG | [4.136] | 08-Oct-24
27+
| Rel 24-10 | 5044018 | .NET Framework 4.7.2 Cumulative Update LKG | [4.136] | 08-Oct-24
28+
| Rel 24-10 | 5044009 | .NET Framework 3.5 Security and Quality Rollup LKG | [3.144] | 08-Oct-24
29+
| Rel 24-10 | 5044017 | .NET Framework 4.7.2 Cumulative Update LKG | [3.144] | 08-Oct-24
30+
| Rel 24-10 | 5044016 | .NET Framework Dot Net | [6.76] | 08-Oct-24
31+
| Rel 24-10 | 5044025 | .NET Framework 4.8 Security and Quality Rollup LKG | [7.46] | 08-Oct-24
32+
| Rel 24-10 | 5044356 | Monthly Rollup | [2.156] | 08-Oct-24
33+
| Rel 24-10 | 5044342 | Monthly Rollup | [3.144] | 08-Oct-24
34+
| Rel 24-10 | 5044343 | Monthly Rollup | [4.136] | 08-Oct-24
35+
| Rel 24-10 | 5044413 | Servicing Stack Update | [3.144] | 08-Oct-24
36+
| Rel 24-10 | 5044411 | Servicing Stack Update | [4.136] | 08-Oct-24
37+
| Rel 24-10 | 5043124 | Servicing Stack Update | [5.100] | 08-Oct-24
38+
| Rel 24-10 | 5039339 | Servicing Stack Update LKG | [2.156] | 11-Jun-24
39+
| Rel 24-06 | 5043126 | Servicing Stack Update | [6.76] | 08-Oct-24
40+
| Rel 24-06 | 5044414 | Servicing Stack Update | [7.46] | 08-Oct-24
41+
| Rel 24-10 | 4494175 | January '20 Microcode | [5.100] | 1-Sep-20
42+
| Rel 24-10 | 4494175 | January '20 Microcode | [6.76] | 1-Sep-20
43+
44+
[5044281]: https://support.microsoft.com/kb/5044281
45+
[5044277]: https://support.microsoft.com/kb/5044277
46+
[5044293]: https://support.microsoft.com/kb/5044293
47+
[5044011]: https://support.microsoft.com/kb/5044011
48+
[5044019]: https://support.microsoft.com/kb/5044019
49+
[5044012]: https://support.microsoft.com/kb/5044012
50+
[5044018]: https://support.microsoft.com/kb/5044018
51+
[5044009]: https://support.microsoft.com/kb/5044009
52+
[5044017]: https://support.microsoft.com/kb/5044017
53+
[5044016]: https://support.microsoft.com/kb/5044016
54+
[5044025]: https://support.microsoft.com/kb/5044025
55+
[5044356]: https://support.microsoft.com/kb/5044356
56+
[5044342]: https://support.microsoft.com/kb/5044342
57+
[5044343]: https://support.microsoft.com/kb/5044343
58+
[5044413]: https://support.microsoft.com/kb/5044413
59+
[5044411]: https://support.microsoft.com/kb/5044411
60+
[5043124]: https://support.microsoft.com/kb/5043124
61+
[5039339]: https://support.microsoft.com/kb/5039339
62+
[5043126]: https://support.microsoft.com/kb/5043126
63+
[5044414]: https://support.microsoft.com/kb/5044414
64+
[4494175]: https://support.microsoft.com/kb/4494175
65+
66+
[2.156]: ./cloud-services-guestos-update-matrix.md#family-2-releases
67+
[3.144]: ./cloud-services-guestos-update-matrix.md#family-3-releases
68+
[4.136]: ./cloud-services-guestos-update-matrix.md#family-4-releases
69+
[5.100]: ./cloud-services-guestos-update-matrix.md#family-5-releases
70+
[6.76]: ./cloud-services-guestos-update-matrix.md#family-6-releases
71+
[7.46]: ./cloud-services-guestos-update-matrix.md#family-7-releases
72+
1873
## September 2024 Guest OS
1974
| Product Category | Parent KB Article | Vulnerability Description | Guest OS | Date First Introduced |
2075
| --- | --- | --- | --- | --- |

0 commit comments

Comments
 (0)