Skip to content

Commit 4e0ac1f

Browse files
Merge pull request #263515 from maud-lv/ml-confluentname
Confluent name update
2 parents 1d869af + 23b41fb commit 4e0ac1f

24 files changed

+90
-87
lines changed

articles/partner-solutions/apache-kafka-confluent-cloud/add-connectors.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: Azure services and Confluent Cloud integration
33
description: This article describes how to use Azure services and install connectors for Confluent Cloud integration.
4-
4+
# customerIntent: As a developer I want set up connectors between Confluent Cloud and Azure services.
55
ms.topic: conceptual
6-
ms.date: 11/20/2023
6+
ms.date: 1/31/2024
77

88
---
99

1010
# Azure services and Confluent Cloud integrations
1111

12-
This article describes how to use Azure services like Azure Functions, and how to install connectors to Azure resources for Confluent Cloud.
12+
This article describes how to use Azure services like Azure Functions, and how to install connectors to Azure resources for Apache Kafka® & Apache Flink® on Confluent Cloud™ - An Azure Native ISV Service.
1313

1414
## Azure Cosmos DB connector
1515

@@ -25,8 +25,8 @@ To set up your connector, see [Azure Cosmos DB Sink Connector for Confluent Clou
2525

2626
## Next steps
2727

28-
- For help with troubleshooting, see [Troubleshooting Apache Kafka on Confluent Cloud solutions](troubleshoot.md).
29-
- Get started with Apache Kafka on Confluent Cloud - An Azure Native ISV Service on
28+
- For help with troubleshooting, see [Troubleshooting Apache Kafka & Apache Flink on Confluent Cloud solutions](troubleshoot.md).
29+
- Get started with Apache Kafka & Apache Flink on Confluent Cloud - An Azure Native ISV Service on
3030

3131
> [!div class="nextstepaction"]
3232
> [Azure portal](https://portal.azure.com/#view/HubsExtension/BrowseResource/resourceType/Microsoft.Confluent%2Forganizations)

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Create Apache Kafka for Confluent Cloud through Azure CLI
3-
description: This article describes how to use the Azure CLI to create an instance of Apache Kafka for Confluent Cloud.
4-
2+
title: 'Create Apache Kafka & Apache Flink on Confluent Cloud through Azure CLI'
3+
description: This quickstart describes how to use the Azure CLI to create an instance of Apache Kafka & Apache Flink on Confluent Cloud.
4+
# customerIntent: As a developer I want to create a new instance of Apache Kafka & Apache Flink on Confluent Cloud using the Azure CLI.
55
ms.topic: quickstart
66
ms.custom: devx-track-azurecli
7-
ms.date: 11/20/2023
7+
ms.date: 1/31/2024
88

99
---
1010

11-
# QuickStart: Get started with Apache Kafka for Confluent Cloud - Azure CLI
11+
# QuickStart: Get started with Apache Kafka & Apache Flink on Confluent Cloud - Azure CLI
1212

13-
In this quickstart, you'll use the Azure Marketplace and Azure CLI to create an instance of Apache Kafka for Confluent Cloud.
13+
In this quickstart, you'll use the Azure Marketplace and Azure CLI to create an instance of Apache Kafka® & Apache Flink® on Confluent Cloud™ - An Azure Native ISV Service.
1414

1515
## Prerequisites
1616

@@ -19,7 +19,7 @@ In this quickstart, you'll use the Azure Marketplace and Azure CLI to create an
1919

2020
## Find offer
2121

22-
Use the Azure portal to find the Apache Kafka for Confluent Cloud application.
22+
Use the Azure portal to find the Apache Kafka & Apache Flink on Confluent Cloud application.
2323

2424
1. In a web browser, go to the [Azure portal](https://portal.azure.com/) and sign in.
2525

@@ -29,21 +29,21 @@ Use the Azure portal to find the Apache Kafka for Confluent Cloud application.
2929

3030
1. From the **Marketplace** page, you have two options based on the type of plan you want. You can sign up for a pay-as-you-go plan or commitment plan. Pay-as-you-go is publicly available. The commitment plan is available to customers who have been approved for a private offer.
3131

32-
- For **pay-as-you-go** customers, search for _Apache Kafka on Confluent Cloud_. Select the offer for Apache Kafka on Confluent Cloud.
32+
- For **pay-as-you-go** customers, search for _Apache Kafka & Apache Flink on Confluent Cloud_. Select the offer for Apache Kafka & Apache Flink on Confluent Cloud.
3333

3434
:::image type="content" source="media/search-pay-as-you-go.png" alt-text="search Azure Marketplace offer.":::
3535

3636
- For **commitment** customers, select the link to **View Private offers**. The commitment requires you to sign up for a minimum spend amount. Use this option only when you know you need the service for an extended time.
3737

3838
:::image type="content" source="media/view-private-offers.png" alt-text="view private offers.":::
3939

40-
Look for _Apache Kafka on Confluent Cloud_.
40+
Look for _Apache Kafka & Apache Flink on Confluent Cloud_.
4141

4242
:::image type="content" source="media/select-from-private-offers.png" alt-text="select private offer.":::
4343

4444
## Create resource
4545

46-
After you've selected the offer for Apache Kafka on Confluent Cloud, you're ready to set up the application.
46+
After you've selected the offer for Apache Kafka & Apache Flink on Confluent Cloud, you're ready to set up the application.
4747

4848
Start by preparing your environment for the Azure CLI:
4949

@@ -61,7 +61,7 @@ az confluent organization create --name "myOrganization" --resource-group "myRes
6161

6262
> [!NOTE]
6363
> 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.
64-
64+
6565
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:
6666

6767
```azurecli
@@ -96,7 +96,7 @@ Or, view the organization by resource ID:
9696
az confluent organization show --ids "/subscriptions/{SubID}/resourceGroups/{myResourceGroup}/providers/Microsoft.Confluent/organizations/{myOrganization}"
9797
```
9898

99-
If you get an error, see [Troubleshooting Apache Kafka for Confluent Cloud solutions](troubleshoot.md).
99+
If you get an error, see [Troubleshooting Apache Kafka & Apache Flink on Confluent Cloud solutions](troubleshoot.md).
100100

101101
## Next steps
102102

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Create Apache Kafka for Confluent Cloud through Azure PowerShell
3-
description: This article describes how to use Azure PowerShell to create an instance of Apache Kafka for Confluent Cloud.
4-
2+
title: Create Apache Kafka & Apache Flink on Confluent Cloud through Azure PowerShell
3+
description: This article describes how to use Azure PowerShell to create an instance of Apache Kafka & Apache Flink on Confluent Cloud.
4+
# customerIntent: As a developer I want create a new instance of Apache Kafka & Apache Flink on Confluent Cloud using Azure PowerShell.
55
ms.topic: quickstart
66
ms.custom: devx-track-azurepowershell
7-
ms.date: 11/20/2023
7+
ms.date: 1/31/2024
88

99
---
1010

11-
# QuickStart: Get started with Apache Kafka for Confluent Cloud - Azure PowerShell
11+
# QuickStart: Get started with Apache Kafka & Apache Flink on Confluent Cloud - Azure PowerShell
1212

13-
In this quickstart, you'll use the Azure Marketplace and Azure PowerShell to create an instance of Apache Kafka for Confluent Cloud.
13+
In this quickstart, you'll use the Azure Marketplace and Azure PowerShell to create an instance of Apache Kafka® & Apache Flink® on Confluent Cloud™ - An Azure Native ISV Service.
1414

1515
## Prerequisites
1616

@@ -19,7 +19,7 @@ In this quickstart, you'll use the Azure Marketplace and Azure PowerShell to cre
1919

2020
## Find offer
2121

22-
Use the Azure portal to find the Apache Kafka for Confluent Cloud application.
22+
Use the Azure portal to find the Apache Kafka & Apache Flink on Confluent Cloud application.
2323

2424
1. In a web browser, go to the [Azure portal](https://portal.azure.com/) and sign in.
2525

@@ -29,21 +29,21 @@ Use the Azure portal to find the Apache Kafka for Confluent Cloud application.
2929

3030
1. From the **Marketplace** page, you have two options based on the type of plan you want. You can sign up for a pay-as-you-go plan or commitment plan. Pay-as-you-go is publicly available. The commitment plan is available to customers who have been approved for a private offer.
3131

32-
- For **pay-as-you-go** customers, search for _Apache Kafka on Confluent Cloud_. Select the offer for Apache Kafka on Confluent Cloud.
32+
- For **pay-as-you-go** customers, search for _Apache Kafka on Confluent Cloud_. Select the offer for Apache Kafka & Apache Flink on Confluent Cloud.
3333

3434
:::image type="content" source="media/search-pay-as-you-go.png" alt-text="search Azure Marketplace offer.":::
3535

3636
- For **commitment** customers, select the link to **View Private offers**. The commitment requires you to sign up for a minimum spend amount. Use this option only when you know you need the service for an extended time.
3737

3838
:::image type="content" source="media/view-private-offers.png" alt-text="view private offers.":::
3939

40-
Look for _Apache Kafka on Confluent Cloud_.
40+
Look for _Apache Kafka & Apache Flink on Confluent Cloud_.
4141

4242
:::image type="content" source="media/select-from-private-offers.png" alt-text="select private offer.":::
4343

4444
## Create resource
4545

46-
After you've selected the offer for Apache Kafka on Confluent Cloud, you're ready to set up the application.
46+
After you've selected the offer for Apache Kafka & Apache Flink on Confluent Cloud, you're ready to set up the application.
4747

4848
Start by preparing your environment for Azure PowerShell:
4949

@@ -102,7 +102,7 @@ You can view the organization by name:
102102
Get-AzConfluentOrganization -Name myOrganization -ResourceGroupName myResourceGroup
103103
```
104104

105-
If you get an error, see [Troubleshooting Apache Kafka for Confluent Cloud solutions](troubleshoot.md).
105+
If you get an error, see [Troubleshooting Apache Kafka & Apache Flink on Confluent Cloud solutions](troubleshoot.md).
106106

107107
## Next steps
108108

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

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
22
title: Create Apache Kafka for Confluent Cloud through Azure portal
33
description: This article describes how to use the Azure portal to create an instance of Apache Kafka for Confluent Cloud.
4+
# customerIntent: As a developer I want create a new instance of Apache Kafka & Apache Flink on Confluent Cloud using the Azure portal.
45
ms.topic: quickstart
5-
ms.date: 11/20/2023
6+
ms.date: 1/31/2024
67

78
---
89

9-
# QuickStart: Get started with Apache Kafka on Confluent Cloud - Azure portal
10+
# QuickStart: Get started with Apache Kafka & Apache Flink on Confluent Cloud - Azure portal
1011

11-
In this quickstart, you'll use the Azure portal to create an instance of Apache Kafka on Confluent Cloud.
12+
In this quickstart, you'll use the Azure portal to create an instance of Apache Kafka® & Apache Flink® on Confluent Cloud™ - An Azure Native ISV Service.
1213

1314
## Prerequisites
1415

@@ -27,11 +28,11 @@ Use the Azure portal to find the Apache Kafka on Confluent Cloud application.
2728

2829
1. From the **Marketplace** page, you have two options based on the type of plan you want. You can sign up for a pay-as-you-go plan or commitment plan. Pay-as-you-go is publicly available. The commitment plan is available to customers who have been approved for a private offer.
2930

30-
- For **pay-as-you-go** customers, search for _Apache Kafka on Confluent Cloud_. Select the offer for Apache Kafka on Confluent Cloud.
31+
- For **pay-as-you-go** customers, search for _Apache Kafka® & Apache Flink® on Confluent Cloud™_ and select the corresponding offer.
3132

3233
:::image type="content" source="media/search-pay-as-you-go.png" alt-text="search Azure Marketplace offer.":::
3334

34-
- For **commitment** customers, select the link to **View Private offers**. The commitment requires you to sign up for a minimum spend amount. Use this option only when you know you need the service for an extended time.
35+
- For **commitment** customers, select the link to **View Private plans**. The commitment requires you to sign up for a minimum spend amount. Use this option only when you know you need the service for an extended time.
3536

3637
:::image type="content" source="media/view-private-offers.png" alt-text="view private offers.":::
3738

@@ -50,40 +51,42 @@ After you've selected the offer for Apache Kafka on Confluent Cloud, you're read
5051

5152
If you didn't select private offers, you'll only have the pay-as-you-go option.
5253

53-
Pick the plan to use, and select **Set up + subscribe**.
54+
Pick the plan to use, and select **Subscribe**.
5455

55-
:::image type="content" source="media/setup-subscribe.png" alt-text="Set up and subscribe.":::
56+
:::image type="content" source="media/create/setup-subscribe.png" alt-text="Set up and subscribe.":::
5657

57-
1. On the **Create Confluent Cloud Resource** basics page, provide the following values. When you've finished, select **Next: Tags**.
58+
1. On the **Create a Confluent organization** basics page, provide the following values. When you've finished, select **Next: Tags**.
5859

59-
:::image type="content" source="media/setup-basics.png" alt-text="Form to set up Confluent Cloud resource.":::
60+
:::image type="content" source="media/create/setup-basics.png" alt-text="Form to set up Confluent Cloud resource.":::
6061

6162
| Property | Description |
6263
| ---- | ---- |
6364
| **Subscription** | From the drop-down menu, select the Azure subscription to deploy to. You must have _Owner_ or _Contributor_ access. |
6465
| **Resource group** | Specify whether you want to create a new resource group or use an existing resource group. A resource group is a container that holds related resources for an Azure solution. For more information, see [Azure Resource Group overview](../../azure-resource-manager/management/overview.md). |
65-
| **Confluent organization name** | To create a new Confluent organization, select **Create a new organization** and provide a name for the Confluent organization. To link to an existing Confluent organization, select **Link Subscription to an existing organization** option. Select the option **Link to an existing organization**. Sign in to your Confluent account, and select the existing organization. |
66+
| **Resource name** | Instance name is automatically generated based on the name of the Confluent organization. |
6667
| **Region** | From the drop-down menu, select one of these regions: Australia East, Canada Central, Central US, East US, East US 2, France Central, North Europe, Southeast Asia, UK South, West Central US, West Europe, West US 2 |
67-
| **Plan** | Select **Pay as you go** or **Commitment**. |
68+
| **Organization** | To create a new Confluent organization, select **Create a new organization** and provide a name for the Confluent organization. To link to an existing Confluent organization, select **Link Subscription to an existing organization** option, sign in to your Confluent account, and select the existing organization. |
69+
| **Plan** | Optionally change plan. |
6870
| **Billing term** | Prefilled based on the selected billing plan. |
69-
| **Price** | Prefilled based on the selected Confluent plan. |
71+
| **Price + Payment options** | Prefilled based on the selected Confluent plan. |
72+
| **Subtotal** | Prefilled based on the selected Confluent plan. |
7073

7174
1. On **Tags**, provide the **name** and **value** pairs for tags you want to apply to resource. After you enter the tags, select **Review + Create**.
7275

73-
:::image type="content" source="media/setup-tags.png" alt-text="Add project tags.":::
76+
:::image type="content" source="media/create/setup-tags.png" alt-text="Add project tags.":::
7477

7578
1. Review the settings you provided. When ready, select **Create**.
7679

7780
1. It takes a few minutes to create the resource. You can view the deployment status in **Notifications**. After the deployment is finished, select the resource to view the **Overview** page.
7881

79-
:::image type="content" source="media/deployment-status.png" alt-text="Deployment status.":::
82+
:::image type="content" source="media/create/deployment-status.png" alt-text="Deployment status.":::
8083

81-
If you get an error, see [Troubleshooting Apache Kafka for Confluent Cloud solutions](troubleshoot.md).
84+
If you get an error, see [Troubleshooting Apache Kafka & Apache Flink on Confluent Cloud solutions](troubleshoot.md).
8285

8386
## Next steps
8487

8588
> [!div class="nextstepaction"]
86-
> [Manage the Confluent Cloud resource](manage.md)
89+
> [Manage the Confluent organization](manage.md)
8790
8891
- Get started with Apache Kafka on Confluent Cloud - An Azure Native ISV Service on
8992

articles/partner-solutions/apache-kafka-confluent-cloud/get-support.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Contact support for Confluent Cloud
33
description: This article describes how to contact support for Confluent Cloud on the Azure portal.
4+
# customerIntent: As a developer I want learn how I can contact support for Apache Kafka & Apache Flink on Confluent Cloud.
45
ms.topic: conceptual
5-
6-
ms.date: 11/20/2023
6+
ms.date: 1/31/2024
77
---
88

99
# Get support for Confluent Cloud resource
1010

11-
This article describes how to contact support for your instance of Apache Kafka for Confluent Cloud on Azure.
11+
This article describes how to contact support for your instance of Apache Kafka® & Apache Flink® on Confluent Cloud on Azure.
1212

1313
## Contact support
1414

@@ -17,7 +17,7 @@ To submit a support request to Confluent, either contact [Confluent support](htt
1717
> [!NOTE]
1818
> For first time users, reset your password before you sign in to the Confluent support portal. If you don't have an account with Confluent Cloud, send an email to `[email protected]` for further assistance.
1919
20-
In the portal, you can either submit a request through Azure Help and Support, or directly from your instance of Apache Kafka for Confluent Cloud on Azure.
20+
In the portal, you can either submit a request through Azure Help and Support, or directly from your instance of Apache Kafka & Apache Flink on Confluent Cloud on Azure.
2121

2222
To submit a request through Azure Help and Support:
2323

@@ -37,8 +37,8 @@ To submit a request from your resource, follow these steps:
3737

3838
## Next steps
3939

40-
- For help with troubleshooting, see [Troubleshooting Apache Kafka on Confluent Cloud solutions](troubleshoot.md).
41-
- Get started with Apache Kafka on Confluent Cloud - An Azure Native ISV Service on
40+
- For help with troubleshooting, see [Troubleshooting Apache Kafka & Apache Flink on Confluent Cloud solutions](troubleshoot.md).
41+
- Get started with Apache Kafka & Apache Flink on Confluent Cloud - An Azure Native ISV Service on
4242

4343
> [!div class="nextstepaction"]
4444
> [Azure portal](https://portal.azure.com/#view/HubsExtension/BrowseResource/resourceType/Microsoft.Confluent%2Forganizations)

articles/partner-solutions/apache-kafka-confluent-cloud/index.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
### YamlMime:Landing
22

3-
title: Apache Kafka on Confluent Cloud - An Azure Native ISV Service
4-
summary: Enables using Apache Kafka as a service.
3+
title: Apache Kafka & Apache Flink on Confluent Cloud - An Azure Native ISV Service
4+
summary: Enables using Apache Kafka and Apache Flink as a managed service on Azure
55

66
metadata:
77
title: Confluent Cloud with Azure documentation
8-
description: Confluent Cloud integrates with Azure to offer Apache Kafka as a service.
8+
description: Confluent Cloud integrates with Azure to offer Apache Kafka and Apache Flink as a service.
99
ms.service: partner-services
1010
ms.subservice: confluent
1111
ms.topic: landing-page
@@ -15,11 +15,11 @@ metadata:
1515

1616
landingContent:
1717
# Card (optional)
18-
- title: About Apache Kafka on Confluent Cloud - An Azure Native ISV Service
18+
- title: About Apache Kafka & Apache Flink on Confluent Cloud
1919
linkLists:
2020
- linkListType: overview
2121
links:
22-
- text: What is Apache Kafka on Confluent Cloud - An Azure Native ISV Service?
22+
- text: What is Apache Kafka & Apache Flink on Confluent Cloud?
2323
url: overview.md
2424
- linkListType: how-to-guide
2525
links:
@@ -31,15 +31,15 @@ landingContent:
3131
linkLists:
3232
- linkListType: quickstart
3333
links:
34-
- text: Get started with Apache Kafka on Confluent Cloud - Azure portal
34+
- text: Get started with Apache Kafka & Apache Flink on Confluent Cloud - Azure portal
3535
url: create.md
36-
- text: Get started with Apache Kafka on Confluent Cloud - Azure CLI
36+
- text: Get started with Apache Kafka & Apache Flink on Confluent Cloud - Azure CLI
3737
url: create-cli.md
3838
- linkListType: how-to-guide
3939
links:
4040
- text: Add connectors for Confluent Cloud
4141
url: add-connectors.md
42-
- text: Troubleshooting Apache Kafka on Confluent Cloud solutions
42+
- text: Troubleshooting Apache Kafka & Apache Flink on Confluent Cloud solutions
4343
url: troubleshoot.md
4444

4545
# Card

0 commit comments

Comments
 (0)