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
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" \
> 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
-
104
49
Start by preparing your environment for Azure PowerShell:
0 commit comments