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: learn-pr/achievements.yml
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5120,6 +5120,51 @@ achievements:
5120
5120
title: Manage device identity with Microsoft Entra join and Enterprise State Roaming
5121
5121
summary: Evaluate options to manage device identities in Microsoft Entra ID. Allow users to join devices in Microsoft Entra ID. Require devices to be marked as compliant. Enable Enterprise State Roaming.
summary: TypeScript provides two ways to organize code - namespaces and modules. This module explains how to organize TypeScript code using namespaces.
summary: TypeScript provides two ways to organize your code, namespaces and modules. This module introduces you to modules in TypeScript (referred to as external modules in previous versions.)
summary: This module introduces you to the TypeScript language, why it was created, and how to use it for JavaScript development. You'll also set up a TypeScript development environment for future exercises.
summary: JavaScript doesn't support interfaces so, as a JavaScript developer, you may or may not have experience with them. In TypeScript, you can use interfaces as you would in traditional object-oriented programming. You can also use interfaces to define object types and this is the primary focus of this module.
title: Develop typed functions by using TypeScript
5146
+
summary: If you know how to write functions in JavaScript, you know how to write functions in TypeScript. But TypeScript adds some new capabilities to the standard JavaScript functions to make them easier to work with.
summary: Generics are code templates that you can define and reuse throughout your codebase. They provide a way to tell functions, classes, or interfaces what type you want to use when you call it.
title: Build JavaScript applications using TypeScript
5156
+
summary: TypeScript offers all the features of JavaScript, plus an additional layer on top of these - the TypeScript type system. In this learning path, you’ll learn how using TypeScript for JavaScript development can help you build more robust code, reduce runtime type errors, take advantage of modern features before they are available in JavaScript, and work better with development teams.
summary: JavaScript is a dynamically typed language. While this makes declaring variables easy, it can in some cases lead to unexpected results. The static type system in TypeScript enables you to describe the shape of an object, providing better documentation, and allowing TypeScript to validate that your code is working correctly. In TypeScript, declarations of namespaces, classes, properties, functions, variables, and other language entities associate types with those entities. The way that a type is formed and associated with a language entity depends on the kind of entity. This module introduces some of the available types and shows how to associate them with variables. Later modules examine how interfaces, functions, and classes use static typing.
title: Declare and instantiate classes in TypeScript
5166
+
summary: Classes in TypeScript extend the ES6 functionality by adding TypeScript-specific features like type annotations for class members, access modifiers, and the ability to specify required or optional parameters. Another benefit of using TypeScript is that you can use it to develop with classes and then compile them down to JavaScript that works across all major browsers and platforms, as needed.
Copy file name to clipboardExpand all lines: learn-pr/azure/azure-netapp-files-with-vmware-solution/7-knowledge-check.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -26,21 +26,21 @@ quiz:
26
26
- content: "For Azure NetApp Files technical support, you must contact NetApp."
27
27
isCorrect: false
28
28
explanation: "Azure NetApp Files is an Azure first-party solution supported by Microsoft."
29
-
- content: "Which option isn't a best practice when you deploy Azure NetApp Files as an Azure VMware Solution (AVS) datastore?"
29
+
- content: "Which option isn't a best practice when you deploy Azure NetApp Files as an Azure VMware Solution datastore?"
30
30
choices:
31
31
- content: "Using a dedicated virtual network for your Azure NetApp Files volumes."
32
32
isCorrect: false
33
33
explanation: "Incorrect. Having a dedicated VNet for your Azure NetApp Files volumes provides optimal performance."
34
34
- content: "Connecting your Azure NetApp Files VNet using an ExpressRoute gateway with the `UltraPerformance` or `ErGw3Az` SKU."
35
35
isCorrect: false
36
-
explanation: "Correct. Using the `UltraPerformance` or `ErGw3Az` SKU ensures the best network performance between your AVS private cloud and the Azure NetApp Files service."
37
-
- content: "Enabling FastPath on the connection between your AVS private cloud and ExpressRoute gateway."
36
+
explanation: "Correct. Using the `UltraPerformance` or `ErGw3Az` SKU ensures the best network performance between your Azure VMware Solution private cloud and the Azure NetApp Files service."
37
+
- content: "Enabling FastPath on the connection between your Azure VMware Solution private cloud and ExpressRoute gateway."
38
38
isCorrect: false
39
-
explanation: "Incorrect. Using FastPath on the connection between your AVS private cloud and ExpressRoute gateway ensures the best network performance between your AVS private cloud and the Azure NetApp Files service."
39
+
explanation: "Incorrect. Using FastPath on the connection between your Azure VMware Solution private cloud and ExpressRoute gateway ensures the best network performance between your Azure VMware Solution private cloud and the Azure NetApp Files service."
40
40
- content: "When you deploy Azure NetApp Files, the Ultra service level should always be used to meet the performance needs of the workload."
41
41
isCorrect: true
42
42
explanation: "Selecting the appropriate service level for your volume based on the workload demands prevents over-provisioning and wasted resources."
43
-
- content: "Which of these benefits isn't a primary business benefit of attaching Azure NetApp Files to AVS?"
43
+
- content: "Which of these benefits isn't a primary business benefit of attaching Azure NetApp Files to Azure VMware Solution?"
44
44
choices:
45
45
- content: "Reduced Azure VMware Solution CPU and memory costs."
Copy file name to clipboardExpand all lines: learn-pr/azure/azure-netapp-files-with-vmware-solution/includes/1-introduction.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
@@ -1,4 +1,4 @@
1
-
Azure VMware Solution (AVS) is a great way to extend or move VMware workloads to Azure without refactoring or rearchitecting. Though AVS includes vSAN datastores to store your virtual machines (VMs), there are several scenarios where it might make sense to extend the storage footprint of your AVS clusters without adding AVS hosts. Storage solutions such as Azure NetApp Files allow you to provision performant and highly available storage directly to AVS hosts. These solutions allow you to increase datastore capacity or connect directly to AVS guest VMs to provide shared file systems to various workloads.
1
+
Azure VMware Solution is a great way to extend or move VMware workloads to Azure without refactoring or rearchitecting. Though Azure VMware Solution includes vSAN datastores to store your virtual machines (VMs), there are several scenarios where it might make sense to extend the storage footprint of your Azure VMware Solution clusters without adding Azure VMware Solution hosts. Storage solutions such as Azure NetApp Files allow you to provision performant and highly available storage directly to Azure VMware Solution hosts. These solutions allow you to increase datastore capacity or connect directly to Azure VMware Solution guest VMs to provide shared file systems to various workloads.
2
2
3
3
Azure NetApp Files uses NetApp technology to provide significant data protection and disaster recovery features for your mission-critical workloads in an Azure native storage service. Using Azure VMware Solution with Azure NetApp Files can also scale your on-premises operation to the cloud with an easy-to-use interface and a lower total cost of ownership.
Copy file name to clipboardExpand all lines: learn-pr/azure/azure-netapp-files-with-vmware-solution/includes/2-why-azure-netapp-files-vmware-solution.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ Azure NetApp Files is an enterprise-class, high-performance, fully managed NAS s
4
4
5
5
Azure NetApp Files is designed to deliver the highest performance for even the most demanding Windows and Linux workloads. It uses dedicated NetApp engineered platforms to deliver this performance by running NetApp's proprietary ONTAP operating system, which is optimized for high storage throughput and availability.
6
6
7
-
A single Azure NetApp Files volume can deliver up to 5,025 MiB/s of throughput at submillisecond latencies. Multiple volumes can be deployed to scale up performance as needed. By default, up to eight Azure NetApp Files volumes can be attached to a single Azure VMware Solution (AVS) software-defined data center (SDDC). This limit can be increased to 256 via a support request.
7
+
A single Azure NetApp Files volume can deliver up to 5,025 MiB/s of throughput at submillisecond latencies. Multiple volumes can be deployed to scale up performance as needed. By default, up to eight Azure NetApp Files volumes can be attached to a single Azure VMware Solution software-defined data center (SDDC). This limit can be increased to 256 via a support request.
8
8
9
9
## Data management
10
10
11
-
Azure NetApp Files offers a complete range of enterprise-grade data management features. These include snapshots, replication, integrated backup, volume cloning, and more. These features provide protection and flexibility for AVS virtual machines (VMs) and workloads hosted on the service, without affecting performance.
11
+
Azure NetApp Files offers a complete range of enterprise-grade data management features. Features include snapshots, replication, integrated backup, volume cloning, and more. These features provide protection and flexibility for Azure VMware Solution virtual machines (VMs) and workloads hosted on the service, without affecting performance.
12
12
13
13
### Snapshots
14
14
@@ -32,7 +32,7 @@ An Azure NetApp Files snapshot only manipulates block pointers, creating a *froz
32
32
33
33
-**Speed**: Creating a snapshot is near-instantaneous. No matter the volume size, creating a snapshot takes only a few seconds. Reverting a volume to a snapshot is also near-instantaneous, supporting fast data recovery if you experience corruption or a malicious hijack event.
34
34
-**Space**: A snapshot consumes minimal storage space because it doesn't copy the data blocks of the entire volume. Two snapshots taken in sequence differ only by the blocks added or changed in the time interval between the two.
35
-
You can create up to 255 snapshots per volume. Creating a snapshot doesn't impact volume performance.
35
+
You can create up to 255 snapshots per volume. Creating a snapshot doesn't affect volume performance.
36
36
37
37
You can create and maintain snapshots in two ways:
38
38
@@ -53,8 +53,8 @@ The point of creating volume snapshots is to recover data that is corrupted or a
53
53
54
54
## Integration with Azure VMware Solution
55
55
56
-
Azure NetApp Files improves utilization of AVS resources, lowers total cost of ownership (TCO), and delivers advanced data management functionality.
56
+
Azure NetApp Files improves utilization of Azure VMware Solution resources, lowers total cost of ownership (TCO), and delivers advanced data management functionality.
57
57
58
-
As business needs change, Azure NetApp Files storage can be scaled independently of AVS compute, optimizing TCO. Azure NetApp Files offloads I/O and memory from AVS hosts that can improve AVS performance and free up resources for other VMs.
58
+
As business needs change, Azure NetApp Files storage can be scaled independently of Azure VMware Solution compute, optimizing TCO. Azure NetApp Files offloads I/O and memory from Azure VMware Solution hosts that can improve Azure VMware Solution performance and free up resources for other VMs.
59
59
60
-
Azure NetApp Files delivers enterprise grade performance, availability, and data management. Efficient snapshots and clones can rapidly create copies and protect data. Cross-zonal and cross-region replication enables integrated backup and disaster recovery for AVS VMs.
60
+
Azure NetApp Files delivers enterprise grade performance, availability, and data management. Efficient snapshots and clones can rapidly create copies and protect data. Cross-zonal and cross-region replication enables integrated backup and disaster recovery for Azure VMware Solution VMs.
Copy file name to clipboardExpand all lines: learn-pr/azure/azure-netapp-files-with-vmware-solution/includes/4-attach-volume-datastore.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
Azure VMware Solution (AVS) supports attaching Network File System (NFS) datastores as a persistent storage option to expand virtual machine storage without scaling the AVS cluster.
1
+
Azure VMware Solution supports attaching Network File System (NFS) datastores as a persistent storage option to expand virtual machine storage without scaling the Azure VMware Solution cluster.
2
2
3
-
To attach your NFS datastore as a persistent storage option in AVS, you need the following resources:
3
+
To attach your NFS datastore as a persistent storage option in Azure VMware Solution, you need the following resources:
4
4
5
-
- Access to an Azure subscription with an AVS private cloud.
5
+
- Access to an Azure subscription with an Azure VMware Solution private cloud.
6
6
- A dedicated VNet connected via an ExpressRoute gateway.
7
7
- An Azure NetApp Files capacity pool, and an Azure NetApp Files delegated subnet.
8
8
@@ -12,10 +12,10 @@ Then use the following steps to configure Azure NetApp Files and Azure VMware So
12
12
1. Select **Volumes** then **+Add Volume** to create a volume.
13
13
1. In the **Basics** tab, enter the **Volume name**.
14
14
1. In the **Basics** tab, provide a **Quota** (GiB) to set the size and performance of the datastore.
15
-
1. In the **Basics** tab, ensure the Virtual network selected is connected to the AVS private cloud via an ExpressRoute gateway and has FastPath enabled.
15
+
1. In the **Basics** tab, ensure the Virtual network selected is connected to the Azure VMware Solution private cloud via an ExpressRoute gateway and has FastPath enabled.
16
16
1. In the **Basics** tab, select the Delegated subnet.
17
17
1. In the **Basics** tab, ensure that **Standard network features** is selected.
18
-
1. In the **Basics** tab, select the **Availability zone** that matches the availability zone of your AVS private cloud.
18
+
1. In the **Basics** tab, select the **Availability zone** that matches the availability zone of your Azure VMware Solution private cloud.
19
19
1. In the **Protocol** tab, ensure **Azure VMware Solution datastore** is selected.
20
20
1. In the **Review + create** tab, select **Create** to create the volume.
21
21
@@ -28,4 +28,4 @@ Then use the following steps to configure Azure NetApp Files and Azure VMware So
28
28
1. Navigate to the **Storage** menu to validate the datastore details.
29
29
1. Check that you can see the NFS datastore from vCenter.
30
30
31
-
Once you create the AVS datastore backed by Azure NetApp Files, you can create VMs in the datastore or use storage vMotion to move VMs from other datastores.
31
+
Once you create the Azure VMware Solution datastore backed by Azure NetApp Files, you can create VMs in the datastore or use storage vMotion to move VMs from other datastores.
0 commit comments