Skip to content

Commit 8506d3b

Browse files
committed
Corrected build warning issues
1 parent f152049 commit 8506d3b

File tree

1 file changed

+4
-61
lines changed

1 file changed

+4
-61
lines changed

articles/partner-solutions/apache-kafka-confluent-cloud/create-powershell.md

Lines changed: 4 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Create Apache Kafka for Confluent Cloud through Azure CLI - Azure partner solutions
3-
description: This article describes how to use the Azure CLI to create an instance of Apache Kafka for Confluent Cloud.
2+
title: Create Apache Kafka for Confluent Cloud through Azure PowerShell - Azure partner solutions
3+
description: This article describes how to use Azure PowerShell to create an instance of Apache Kafka for Confluent Cloud.
44
ms.service: partner-services
55
ms.topic: quickstart
66
ms.date: 11/03/2021
@@ -9,9 +9,9 @@ ms.author: tomfitz
99
ms.custom: devx-track-azurepowershell
1010
---
1111

12-
# QuickStart: Get started with Apache Kafka for Confluent Cloud - Azure CLI
12+
# QuickStart: Get started with Apache Kafka for Confluent Cloud - Azure PowerShell
1313

14-
In this quickstart, you'll use the Azure Marketplace and Azure CLI to create an instance of Apache Kafka for Confluent Cloud.
14+
In this quickstart, you'll use the Azure Marketplace and Azure PowerShell to create an instance of Apache Kafka for Confluent Cloud.
1515

1616
## Prerequisites
1717

@@ -46,61 +46,6 @@ Use the Azure portal to find the Apache Kafka for Confluent Cloud application.
4646

4747
After you've selected the offer for Apache Kafka on Confluent Cloud, you're ready to set up the application.
4848

49-
### [Azure CLI](#tab/azure-cli)
50-
51-
Start by preparing your environment for the Azure CLI:
52-
53-
[!INCLUDE [azure-cli-prepare-your-environment-no-header.md](../../../includes/azure-cli-prepare-your-environment-no-header.md)]
54-
55-
After you sign in, use the [az confluent organization create](/cli/azure/confluent/organization#az_confluent_organization_create) command to create the new organization resource:
56-
57-
```azurecli
58-
az confluent organization create --name "myOrganization" --resource-group "myResourceGroup" \
59-
--location "my location" \
60-
--offer-detail id="string" plan-id="string" plan-name="string" publisher-id="string" term-unit="string" \
61-
--user-detail email-address="[email protected]" first-name="string" last-name="string" \
62-
--tags Environment="Dev"
63-
```
64-
65-
> [!NOTE]
66-
> If you want the command to return before the create operation completes, add the optional parameter `--no-wait`. The operation continues to run until the Confluent organization is created.
67-
68-
To pause CLI execution until an organization's specific event or condition occurs, use the [az confluent organization wait](/cli/azure/confluent/organization#az_confluent_organization_wait) command. For example, to wait until an organization is created:
69-
70-
```azurecli
71-
az confluent organization wait --name "myOrganization" --resource-group "myResourceGroup" --created
72-
```
73-
74-
To see a list of existing organizations, use the [az confluent organization list](/cli/azure/confluent/organization#az_confluent_organization_list) command.
75-
76-
You can view all of the organizations in your subscription:
77-
78-
```azurecli
79-
az confluent organization list
80-
```
81-
82-
Or, view the organizations in a resource group:
83-
84-
```azurecli
85-
az confluent organization list --resource-group "myResourceGroup"
86-
```
87-
88-
To see the properties of a specific organization, use the [az confluent organization show](/cli/azure/confluent/organization#az_confluent_organization_show) command.
89-
90-
You can view the organization by name:
91-
92-
```azurecli
93-
az confluent organization show --name "myOrganization" --resource-group "myResourceGroup"
94-
```
95-
96-
Or, view the organization by resource ID:
97-
98-
```azurecli
99-
az confluent organization show --ids "/subscriptions/{SubID}/resourceGroups/{myResourceGroup}/providers/Microsoft.Confluent/organizations/{myOrganization}"
100-
```
101-
102-
### [Azure PowerShell](#tab/azure-powershell)
103-
10449
Start by preparing your environment for Azure PowerShell:
10550

10651
[!INCLUDE [azure-powershell-requirements-no-header.md](../../../includes/azure-powershell-requirements-no-header.md)]
@@ -158,8 +103,6 @@ You can view the organization by name:
158103
Get-AzConfluentOrganization -Name myOrganization -ResourceGroupName myResourceGroup
159104
```
160105

161-
---
162-
163106
If you get an error, see [Troubleshooting Apache Kafka for Confluent Cloud solutions](troubleshoot.md).
164107

165108
## Next steps

0 commit comments

Comments
 (0)