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
This article describes how you can create an instance of Azure Spring Cloud using the [Az.SpringCloud](/powershell/module/Az.SpringCloud) PowerShell module.
17
+
This article describes how you can create an instance of Azure Spring Cloud by using the [Az.SpringCloud](/powershell/module/Az.SpringCloud) PowerShell module.
18
18
19
19
## Requirements
20
20
21
-
* If you don't have an Azure subscription, create a [free](https://azure.microsoft.com/free/) account
22
-
before you begin.
21
+
The requirements for completing the steps in this article depend on your Azure subscription:
22
+
23
+
* If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/) before you begin.
> While the **Az.SpringCloud** PowerShell module is in preview, you must install it using
28
-
> the `Install-Module` cmdlet. After this PowerShell module becomes generally available, it will be
29
-
> part of future Az PowerShell releases and available by default from within Azure Cloud
30
-
> Shell.
28
+
> While the **Az.SpringCloud** PowerShell module is in preview, you must install it by using
29
+
> the `Install-Module` cmdlet. See the following command. After this PowerShell module becomes generally available, it will be part of future Az PowerShell releases and available by default from within Azure Cloud Shell.
31
30
32
31
```azurepowershell-interactive
33
32
Install-Module -Name Az.SpringCloud
34
33
```
35
34
36
35
* If you have multiple Azure subscriptions, choose the appropriate subscription in which the
37
-
resources should be billed. Select a specific subscription using the
[New-AzSpringCloudApp](/powershell/module/az.springcloud/new-azspringcloudapp) cmdlet. The following
72
-
example creates an app in Azure Spring Cloud named `gateway`.
65
+
To create a new app, you use the
66
+
[New-AzSpringCloudApp](/powershell/module/az.springcloud/new-azspringcloudapp) cmdlet. The following example creates an app in Azure Spring Cloud named `gateway`.
To get an Azure Spring Cloud service and its properties, you use the
92
85
[Get-AzSpringCloud](/powershell/module/az.springcloud/get-azspringcloud) cmdlet. The following
@@ -96,57 +89,50 @@ example retrieves information about the specified Azure Spring Cloud service.
96
89
Get-AzSpringCloud -ResourceGroupName <resource group name> -ServiceName <service instance name>
97
90
```
98
91
99
-
## Get an application in Azure Spring Cloud
92
+
## Get an application
100
93
101
94
To get an app and its properties in Azure Spring Cloud, you use the
102
-
[Get-AzSpringCloudApp](/powershell/module/az.springcloud/get-azspringcloudapp) cmdlet. The following
103
-
example retrieves information about the app `gateway`.
95
+
[Get-AzSpringCloudApp](/powershell/module/az.springcloud/get-azspringcloudapp) cmdlet. The following example retrieves information about the app `gateway`.
cmdlet. The following example retrieves information about the `default` Spring Cloud deployment.
104
+
[Get-AzSpringCloudAppDeployment](/powershell/module/az.springcloud/get-azspringcloudappdeployment) cmdlet. The following example retrieves information about the `default` Azure Spring Cloud deployment.
cmdlet. The following example deletes an app deployed in Azure Spring Cloud named `default` for the
129
-
specified service and app.
117
+
[Remove-AzSpringCloudAppDeployment](/powershell/module/az.springcloud/remove-azspringcloudappdeployment) cmdlet. The following example deletes an app deployed in Azure Spring Cloud named `default`, for the specified service and app.
To remove an app in Azure Spring Cloud, you use the
138
-
[Remove-AzSpringCloudApp](/powershell/module/Az.SpringCloud/remove-azspringcloudapp) cmdlet. The
139
-
following example deletes the `gateway` app in the specified service and resource group.
126
+
[Remove-AzSpringCloudApp](/powershell/module/Az.SpringCloud/remove-azspringcloudapp) cmdlet. The following example deletes the `gateway` app in the specified service and resource group.
To remove an Azure Spring Cloud service, you use the
148
-
[Remove-AzSpringCloud](/powershell/module/Az.SpringCloud/remove-azspringcloud) cmdlet. The following
149
-
example deletes the specified Azure Spring Cloud service.
135
+
[Remove-AzSpringCloud](/powershell/module/Az.SpringCloud/remove-azspringcloud) cmdlet. The following example deletes the specified Azure Spring Cloud service.
150
136
151
137
```azurepowershell
152
138
Remove-AzSpringCloud -ResourceGroupName <resource group name> -ServiceName <service instance name>
> The following example deletes the specified resource group and all resources contained within it.
159
-
> If resources outside the scope of this article exist in the specified resource group, they will
160
-
> also be deleted.
144
+
> The following example deletes the specified resource group and all resources contained within it. If resources outside the scope of this article exist in the specified resource group, they will also be deleted.
161
145
162
146
```azurepowershell-interactive
163
147
Remove-AzResourceGroup -Name <resource group name>
164
148
```
165
149
166
150
## Next steps
167
151
168
-
[Azure Spring Cloud developer resources](./resources.md).
152
+
[Azure Spring Cloud developer resources](./resources.md)
0 commit comments