You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-health-insights/radiology-insights/get-started.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ The Service URL to access your service is: https://```YOUR-NAME```.cognitiveserv
29
29
To send an API request, you need the endpoint and key of your Azure AI Health Insights service.
30
30
31
31
32
-
You can also find a full view of the [request parameters here](/rest/api/cognitiveservices/healthinsights/radiology-insights/create-job).
32
+
You can also find a full view of the [request parameters here](/rest/api/cognitiveservices/healthinsights/radiology-insights/create-job?view=rest-cognitiveservices-healthinsights-2024-04-01).
33
33
34
34
35
35
](../media/keys-and-endpoints.png#lightbox)
You can also find a full view of the [request parameters here](/rest/api/cognitiveservices/healthinsights/radiology-insights/create-job).
159
+
You can also find a full view of the [request parameters here](/rest/api/cognitiveservices/healthinsights/radiology-insights/create-job?view=rest-cognitiveservices-healthinsights-2024-04-01).
You can also find a full view of the [request parameters here](/rest/api/cognitiveservices/healthinsights/radiology-insights/get-job).
209
+
You can also find a full view of the [request parameters here](/rest/api/cognitiveservices/healthinsights/radiology-insights/get-job?view=rest-cognitiveservices-healthinsights-2024-04-01).
-[Show Deployment Pane to the Side](#show-deployment-pane)
37
41
38
42
These commands are also shown in the context menu when you right-click a Bicep file:
39
43
@@ -45,7 +49,11 @@ When you right-click a JSON file:
45
49
46
50
### Build ARM template
47
51
48
-
The `build` command converts a Bicep file to an Azure Resource Manager template (ARM template). The new JSON template is stored in the same folder with the same file name. If a file with the same file name exists, it overwrites the old file. For more information, see [Bicep CLI commands](./bicep-cli.md#bicep-cli-commands).
52
+
The `build` command converts a Bicep file to an Azure Resource Manager template (ARM template). The new JSON template is stored in the same folder with the same file name. If a file with the same file name exists, it overwrites the old file. For more information, see [Bicep CLI commands](./bicep-cli.md#build).
53
+
54
+
### Build parameters file
55
+
56
+
The `build` command converts a [Bicep parameters file](./parameter-files.md#parameters-file) to a [JSON parameters file](../templates/parameter-files.md#parameter-file). The new JSON parameters file is stored in the same folder with the same file name. If a file with the same file name exists, it overwrites the old file. For more information, see [Bicep CLI commands](./bicep-cli.md#build-params).
49
57
50
58
### Create Bicep configuration file
51
59
@@ -115,21 +123,7 @@ The visualizer shows the resources defined in the Bicep file with the resource d
115
123
116
124
You can also open the visualizer side-by-side with the Bicep file.
117
125
118
-
### Restore Bicep modules
119
-
120
-
When your Bicep file uses modules that are published to a registry, the restore command gets copies of all the required modules from the registry. It stores those copies in a local cache. For more information, see [restore](./bicep-cli.md#restore).
121
-
122
-
## View documentation
123
-
124
-
From Visual Studio Code, you can open the template reference for the resource type you're working on. To do so, hover your cursor over the resource symbolic name, and then select **View Documentation**.
125
-
126
-
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-view-type-document.png" alt-text="Screenshot of Visual Studio Code Bicep view type document.":::
127
-
128
-
## Go to definition
129
-
130
-
When defining a [module](./modules.md) and regardless of the type of file that's being referenced - whether it's a local file, module registry file, or a template spec - you can open the file by selecting or highlighting the module path and then press **[F12]**. If the referenced file is an [Azure Verified Modules(AVM)](https://aka.ms/avm), you can toggle between compiled JSON or Bicep file. To open the Bicep file of a private registry module, ensure that the module is published to the registry with the `WithSource` switch enabled. For more information, see [Publish files to registry](./private-module-registry.md#publish-files-to-registry). The Visual Studio Code Bicep extension version 0.27.1 or newer is required for opening Bicep files from a private module registry.
131
-
132
-
## Paste as Bicep
126
+
### Paste as Bicep
133
127
134
128
You can paste a JSON snippet from an ARM template to a Bicep file. Visual Studio Code automatically decompiles the JSON to Bicep. This feature is only available with the Bicep extension version 0.14.0 or newer, and it's enabled by default. To disable the feature, see [VS Code and Bicep extension](./install.md#visual-studio-code-and-bicep-extension).
135
129
@@ -195,14 +189,34 @@ Visual Studio Code automatically converts the JSON to Bicep. Notice that you als
195
189
196
190
You can undo the decompilation by using <kbd>Ctrl+Z</kbd>. The original JSON appears in the file.
197
191
192
+
### Restore Bicep modules
193
+
194
+
When your Bicep file uses modules that are published to a registry, the restore command gets copies of all the required modules from the registry. It stores those copies in a local cache. For more information, see [restore](./bicep-cli.md#restore).
195
+
196
+
### Show deployment pane
197
+
198
+
The Bicep Deployment Pane is an experimental feature. For more information, see [Using the Deployment Pane](https://github.com/Azure/bicep/blob/main/docs/experimental/deploy-ui.md).
199
+
200
+
You can also open the deployment pane side-by-side with the Bicep file.
201
+
202
+
## View documentation
203
+
204
+
From Visual Studio Code, you can open the template reference for the resource type you're working on. To do so, hover your cursor over the resource symbolic name, and then select **View Documentation**.
205
+
206
+
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-view-type-document.png" alt-text="Screenshot of Visual Studio Code Bicep view type document.":::
207
+
208
+
## Go to definition
209
+
210
+
When defining a [module](./modules.md) and regardless of the type of file that's being referenced - whether it's a local file, module registry file, or a template spec - you can open the file by selecting or highlighting the module path and then press **[F12]**. If the referenced file is an [Azure Verified Modules(AVM)](https://aka.ms/avm), you can toggle between compiled JSON or Bicep file. To open the Bicep file of a private registry module, ensure that the module is published to the registry with the `WithSource` switch enabled. For more information, see [Publish files to registry](./private-module-registry.md#publish-files-to-registry). The Visual Studio Code Bicep extension version 0.27.1 or newer is required for opening Bicep files from a private module registry.
211
+
198
212
## Troubleshoot
199
213
200
214
The `Problems` pane summarizes the errors and warning in your Bicep file:
201
215
202
216
:::image type="content" source="./media/visual-studio-code/visual-studio-code-bicep-problems-pane.png" alt-text="Screenshot of Visual Studio Code Bicep problems pane.":::
203
217
204
218
For the list of error/warning codes, see [Bicep error/warning codes](./bicep-error-codes.md).
205
-
219
+
206
220
## Next steps
207
221
208
222
To walk through a quickstart tutorial, see [Quickstart: Create Bicep files with Visual Studio Code](./quickstart-create-bicep-use-visual-studio-code.md).
description: Learn about cloud subscriptions, how they help manage Microsoft products and services, and the benefits of organizing resources with multiple subscriptions.
4
+
author: bandersmsft
5
+
ms.reviewer: macyso
6
+
ms.service: cost-management-billing
7
+
ms.subservice: billing
8
+
ms.topic: concept-article
9
+
ms.date: 11/21/2024
10
+
ms.author: banders
11
+
#customer intent: As a billing admin, I want to understand what a cloud subscription is so that I can manage my resources effectively.
12
+
---
13
+
14
+
# What is a cloud subscription?
15
+
16
+
A cloud subscription is a way to manage the products and services that you buy from Microsoft. Cloud subscriptions get created when you acquire Azure resources and sometimes when you get products outside of Azure services. For example, they include the Microsoft Azure Consumption Commitment benefit, some Microsoft 365 subscriptions, and benefits like Enterprise Support.
17
+
18
+
The term cloud subscription is synonymous with Azure subscription.
19
+
20
+
-**No cost for cloud subscriptions** - Cloud subscriptions themselves don't cost any money. They're used to organizing and managing the things you buy. While products like virtual machines or Enterprise Support managed within a cloud subscription might incur charges, the subscription itself doesn't.
21
+
-**Multiple subscriptions** - You can create multiple cloud subscriptions to delegate management to different users in your organization or to apply policies for security, budgeting, and compliance.
22
+
-**Familiar management tools** - If you used Azure subscriptions before, you can manage cloud subscriptions similarly, with more manageability for a broader set of products and services.
23
+
24
+
## Frequently asked questions
25
+
26
+
Here are some common questions and answers about cloud subscriptions.
27
+
28
+
### Where can I find my cloud subscription?
29
+
30
+
In the Azure portal, you can see all your cloud subscriptions on the Subscriptions page.
31
+
32
+
If you're signing in for the first time, search for **Subscriptions** in the search bar.
### Do I get charged for creating and using cloud subscriptions?
38
+
39
+
No, cloud subscriptions are created silently and are used to manage the things that you buy. They don't incur charges or cost money.
40
+
41
+
### How do I manage my cloud subscriptions?
42
+
43
+
To see your cloud subscriptions, navigate to your list of subscriptions in the Azure portal. From there, you can manage them using the tools you’re already familiar with.
44
+
45
+
## Related content
46
+
47
+
-[Create a new cloud subscription](create-subscription.md)
48
+
-[Manage role assignments and permissions](../../role-based-access-control/rbac-and-directory-admin-roles.md)
49
+
-[Manage your cloud subscriptions](manage-azure-subscription-policy.md)
50
+
-[Transfer your cloud subscription](../../role-based-access-control/transfer-subscription.md)
51
+
-[Filter and view your subscriptions](filter-view-subscriptions.md)
Copy file name to clipboardExpand all lines: articles/cost-management-billing/scope-level/index.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
### YamlMime:Landing
2
2
3
3
title: Centrally managed Azure Hybrid Benefit
4
-
summary: Azure Hybrid Benefit is a licensing benefit that lets you bring your on-premises core-based Windows Server and SQL Server licenses with active Software Assurance (or subscription) to Azure. It allows you to significantly reduce the costs of running your workloads in the cloud. In the Azure portal, you can now centrally manage your Azure Hybrid Benefit for SQL Server by assigning licenses to the scope of an entire Azure subscription or overall billing account.
4
+
summary: Azure Hybrid Benefit is an Azure discount that lets you allocate your on-premises core-based Windows Server and SQL Server licenses with active Software Assurance (or subscription) to Azure. It allows you to significantly reduce the costs of running your workloads in the cloud. In the Azure portal, you can now centrally manage your Azure Hybrid Benefit for SQL Server by assigning licenses to the scope of an entire Azure subscription or overall billing account.
5
5
metadata:
6
6
title: Azure Hybrid Benefit documentation
7
-
description: Azure Hybrid Benefit is a licensing benefit that lets you bring your on-premises core-based Windows Server and SQL Server licenses with active Software Assurance (or subscription) to Azure. It allows you to significantly reduce the costs of running your workloads in the cloud. In the Azure portal, you can now centrally manage your Azure Hybrid Benefit for SQL Server by assigning licenses to the scope of an entire Azure subscription or overall billing account.
7
+
description: Azure Hybrid Benefit is an Azure discount that lets you allocate your on-premises core-based Windows Server and SQL Server licenses with active Software Assurance (or subscription) to Azure. It allows you to significantly reduce the costs of running your workloads in the cloud. In the Azure portal, you can now centrally manage your Azure Hybrid Benefit for SQL Server by assigning licenses to the scope of an entire Azure subscription or overall billing account.
Copy file name to clipboardExpand all lines: articles/cost-management-billing/scope-level/manage-licenses-centrally.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Prices shown in the following image are only examples.
36
36
37
37
The Azure SQL resources covered by the assigned Core licenses can vary from hour to hour. The variance depends on what resources run and in what order the automated system processes their usage. However, the system ensures the maximum usage of the assigned SQL licenses in the selected scope. You can monitor the usage using Cost Management. For more information, see [How to track assigned license usage](create-sql-license-assignments.md#track-assigned-license-use).
38
38
39
-
The following diagram shows how the assigned SQL Server licenses apply over time to get the maximum Azure Hybrid Benefit discount.
39
+
The following diagram shows how the assigned SQL Server licenses apply over time to get the maximum Azure Hybrid Benefit allocation.
40
40
41
41
:::image type="content" source="./media/manage-licenses-centrally/ncl-utilization-over-time.png" alt-text="Diagram showing NC use over time." border="false" lightbox="./media/manage-licenses-centrally/ncl-utilization-over-time.png":::
Copy file name to clipboardExpand all lines: articles/cost-management-billing/scope-level/overview-azure-hybrid-benefit-scope.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
2
title: What is centrally managed Azure Hybrid Benefit for SQL Server?
3
-
description: Azure Hybrid Benefit is a licensing benefit that lets you bring your on-premises core-based Windows Server and SQL Server licenses with active Software Assurance (or subscription) to Azure.
3
+
description: Azure Hybrid Benefit an Azure discount that lets you allocate your on-premises core-based Windows Server and SQL Server licenses with active Software Assurance (or subscription) to Azure.
4
4
author: bandersmsft
5
5
ms.author: banders
6
-
ms.date: 11/11/2024
6
+
ms.date: 11/21/2024
7
7
ms.topic: overview
8
8
ms.service: cost-management-billing
9
9
ms.subservice: ahb
@@ -12,7 +12,7 @@ ms.reviewer: chrisrin
12
12
13
13
# What is centrally managed Azure Hybrid Benefit for SQL Server?
14
14
15
-
Azure Hybrid Benefit is a licensing benefit that helps you to significantly reduce the costs of running your workloads in the cloud. It works by letting you use your on-premises Software Assurance or subscription-enabled Windows Server and SQL Server licenses on Azure. For more information, see [Azure Hybrid Benefit](https://azure.microsoft.com/pricing/hybrid-benefit/).
15
+
Azure Hybrid Benefit an Azure discount that helps you to significantly reduce the costs of running your workloads in the cloud. It works by letting you use your on-premises Software Assurance or subscription-enabled Windows Server and SQL Server licenses on Azure. For more information, see [Azure Hybrid Benefit](https://azure.microsoft.com/pricing/hybrid-benefit/).
16
16
17
17
You can centrally manage your Azure Hybrid Benefit for SQL Server across the scope of an entire Azure subscription or overall billing account. To quickly learn how it works, watch the following video.
18
18
@@ -94,7 +94,7 @@ You get the following benefits:
94
94
95
95
## How licenses apply to Azure resources
96
96
97
-
Both SQL Server Enterprise (core) and SQL Server Standard (core) licenses with Software Assurance qualify but, as described in the [Microsoft Product Terms](https://www.microsoft.com/licensing/terms/productoffering/MicrosoftAzureServices/EAEAS), different conversion ratios apply when you bring them to Azure with Azure Hybrid Benefit.
97
+
Both SQL Server Enterprise (core) and SQL Server Standard (core) licenses with Software Assurance qualify but, as described in the [Microsoft Product Terms](https://www.microsoft.com/licensing/terms/productoffering/MicrosoftAzureServices/EAEAS), different conversion ratios apply when you allocate them to Azure with Azure Hybrid Benefit.
98
98
99
99
One rule to understand: One SQL Server Enterprise Edition license has the same coverage as _four_ SQL Server Standard Edition licenses, across all qualified Azure SQL resource types.
0 commit comments