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: cloud-controlplane/x-topics/quickstart.md
+36-38Lines changed: 36 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,16 +37,15 @@ If you successfully retrieve an access token, it is valid for one hour.
37
37
1. Under **Body**, click **Add** and provide a name for your resource group. A resource group is a container to organize your Redpanda Cloud resources, such as clusters and networks.
38
38
39
39
1. In the request panel, click **Send request**. If successful, the response returns a resource group ID. Copy the ID and use it later when you make a Create network request.
40
-
41
-
```json
42
-
{
43
-
"resource_group": {
44
-
"id": "d61b4c7f-95da-4d62-a237-9fd9f20a0c19",
45
-
"name": "test-resource-group",
46
-
...
47
-
}
48
-
}
49
-
```
40
+
```
41
+
{
42
+
"resource_group": {
43
+
"id": "d61b4c7f-95da-4d62-a237-9fd9f20a0c19",
44
+
"name": "test-resource-group",
45
+
...
46
+
}
47
+
}
48
+
```
50
49
51
50
1. In the operation dropdown, select **Create network**.
52
51
@@ -55,33 +54,33 @@ If you successfully retrieve an access token, it is valid for one hour.
55
54
1. Include the ID of the resource group you created in the previous step.
56
55
57
56
1. Click **Send request**. Note that this endpoint returns a long-running operation. The response returns a network ID in `metadata.network_id`. Copy the ID and pass it later when you call the Create cluster endpoint. To check the operation state, make a [**Get operation**](/api/doc/cloud-controlplane/explorer/operation/operation-operationservice_getoperation) request with the `operation.id`.
1. When the Create network operation is complete, make a [Create cluster](/api/doc/cloud-controlplane/explorer/operation/operation-clusterservice_createcluster) request. Use the resource group and network IDs you just created. Note that this endpoint also returns a long-running operation.
74
72
75
-
1. For BYOC, run `rpk cloud byoc` in the shell, passing the `metadata.cluster_id` from the Create cluster response as a flag:
76
-
73
+
1. For BYOC, run `rpk cloud byoc <cloud-provider> apply` in the shell, passing the `metadata.cluster_id` from the Create cluster response as a flag:
@@ -100,29 +99,28 @@ If you successfully retrieve an access token, it is valid for one hour.
100
99
1. Under **Body**, click **Add** and provide a name for your resource group. A resource group is a container to organize your Redpanda Cloud resources, such as clusters and networks.
101
100
102
101
1. In the request panel, click **Send request**. If successful, the response returns a resource group ID. Copy the ID and use it later when you make a Create Serverless cluster request.
103
-
104
-
```json
105
-
{
106
-
"resource_group": {
107
-
"id": "d61b4c7f-95da-4d62-a237-9fd9f20a0c19",
108
-
"name": "test-resource-group",
109
-
...
110
-
}
111
-
}
112
-
```
102
+
```
103
+
{
104
+
"resource_group": {
105
+
"id": "d61b4c7f-95da-4d62-a237-9fd9f20a0c19",
106
+
"name": "test-resource-group",
107
+
...
108
+
}
109
+
}
110
+
```
113
111
114
112
1. In the operation dropdown, scroll to **Serverless Clusters** and select [**Create Serverless cluster**](/api/doc/cloud-controlplane/explorer/operation/operation-serverlessclusterservice_createserverlesscluster).
115
113
116
114
1. Prepare your Create Serverless cluster request.
117
115
118
-
1. In the request body, use the resource group ID. You can use `us-east-1` for the Serverless region if you don't require a specific regionfor your cluster.
116
+
1. In the request body, use the resource group ID and enter a [serverless region](https://docs.redpanda.com/redpanda-cloud/reference/tiers/serverless-regions/) (for example, `us-east-1`).
119
117
120
118
1. Click **Send request**. Note that this endpoint returns a long-running operation. The response returns a Serverless cluster ID in `metadata.cluster_id`. To check the operation state, make a [**Get operation**](/api/doc/cloud-controlplane/explorer/operation/operation-operationservice_getoperation) request with the `operation.id`.
121
119
122
120
## Next steps: try the Data Plane APIs
123
121
124
122
1. Retrieve your cluster's data plane API URL by making a **Get cluster** (BYOC, Dedicated) or **Get Serverless cluster** (Serverless) request in the API Explorer.
125
-
1. From the value of `dataplane_api.url` in the response body, save the subdomain (the part between ``https://` and `.cloud.redpanda.com`).
123
+
1. From the value of `dataplane_api.url` in the response body, save the subdomain (the part between `https://` and `.cloud.redpanda.com`).
126
124
1. From the **Redpanda APIs** selector, go to **Cloud Data Plane API**.
127
125
1. Select an operation, for example **Create topic** or **List users**.
128
126
1. In the URL field, add the data plane API URL. You can now make Data Plane API requests to your target cluster.
Copy file name to clipboardExpand all lines: cloud-dataplane/x-topics/quickstart.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,7 @@ If you successfully retrieve an access token, it is valid for one hour. You can
24
24
25
25
1. In the subheader of this page, open [**API Explorer**](/api/doc/cloud-dataplane/explorer).
26
26
27
-
1. If you don't already have the data plane API URL for your target cluster, make a [Get Cluster](/api/doc/cloud-controlplane/explorer/operation/operation-clusterservice_getcluster) (BYOC, Dedicated) or [Get Serverless Cluster](/api/doc/cloud-controlplane/explorer/operation/operation-serverlessclusterservice_createserverlesscluster) (Serverless) request with the Control Plane API. The response contains the data plane API URL.
28
-
27
+
1. If you don't already have the data plane API URL for your target cluster, make a [Get Cluster](/api/doc/cloud-controlplane/explorer/operation/operation-clusterservice_getcluster) (BYOC, Dedicated) or [Get Serverless Cluster](/api/doc/cloud-controlplane/explorer/operation/operation-serverlessclusterservice_getserverlesscluster) (Serverless) request with the Control Plane API. The response contains the data plane API URL.
29
28
From the `dataplane_api.url` value in the response, extract only the subdomain (the part between `https://` and `.cloud.redpanda.com`). Enter this value in the Data Plane API URL field.
30
29
31
30
1. In the **Choose an operation** dropdown, select **Create topic**.
0 commit comments