@@ -549,6 +549,8 @@ components:
549549 items :
550550 type : string
551551 type : array
552+ redpanda_connect :
553+ $ref : ' #/components/schemas/RedpandaConnect'
552554 redpanda_console :
553555 $ref : ' #/components/schemas/RedpandaConsole'
554556 redpanda_node_count :
@@ -1394,12 +1396,14 @@ components:
13941396 CustomerManagedResourcesUpdate.AWS :
13951397 description : AWS resources managed by user.
13961398 properties :
1397- oxla_node_group_instance_profile :
1398- $ref : ' #/components/schemas/AWSInstanceProfile'
13991399 redpanda_connect_node_group_instance_profile :
14001400 $ref : ' #/components/schemas/AWSInstanceProfile'
14011401 redpanda_connect_security_group :
14021402 $ref : ' #/components/schemas/AWSSecurityGroup'
1403+ rpsql_cloud_storage_bucket :
1404+ $ref : ' #/components/schemas/CustomerManagedAWSCloudStorageBucket'
1405+ rpsql_node_group_instance_profile :
1406+ $ref : ' #/components/schemas/AWSInstanceProfile'
14031407 rpsql_security_group :
14041408 $ref : ' #/components/schemas/AWSSecurityGroup'
14051409 title : AWS Customer-Managed Resoures
@@ -2729,6 +2733,16 @@ components:
27292733 created :
27302734 $ref : ' #/components/schemas/Created'
27312735 type : object
2736+ NetworkUpdate :
2737+ description : Resource describing an Update Network.
2738+ properties :
2739+ id :
2740+ description : ID of the network.
2741+ type : string
2742+ required :
2743+ - id
2744+ title : NetworkUpdate
2745+ type : object
27322746 NullValue :
27332747 description : |-
27342748 `NullValue` is a singleton enumeration to represent the null value for the
@@ -2759,6 +2773,7 @@ components:
27592773 - TYPE_DELETE_SERVERLESS_PRIVATE_LINK
27602774 - TYPE_CREATE_NETWORK_PEERING
27612775 - TYPE_DELETE_NETWORK_PEERING
2776+ - TYPE_UPDATE_NETWORK
27622777 - TYPE_CREATE_SHADOW_LINK
27632778 - TYPE_UPDATE_SHADOW_LINK
27642779 - TYPE_DELETE_SHADOW_LINK
@@ -3190,6 +3205,14 @@ components:
31903205 developer project id>".
31913206 type : string
31923207 type : object
3208+ RedpandaConnect :
3209+ description : Cluster's Redpanda Connect properties.
3210+ properties :
3211+ version :
3212+ description : Version of the Redpanda Connect engine running on the Cluster.
3213+ readOnly : true
3214+ type : string
3215+ type : object
31933216 RedpandaConsole :
31943217 description : Cluster's Redpanda Console properties.
31953218 properties :
@@ -4342,6 +4365,16 @@ components:
43424365 group :
43434366 $ref : ' #/components/schemas/Group'
43444367 type : object
4368+ UpdateNetworkMetadata :
4369+ description : Resource describing an in-progress UpdateNetwork Operation.
4370+ title : UpdateNetworkMetadata
4371+ type : object
4372+ UpdateNetworkOperation :
4373+ description : UpdateNetworkOperation is the response of the update network rpc.
4374+ properties :
4375+ operation :
4376+ $ref : ' #/components/schemas/v1.Operation'
4377+ type : object
43454378 UpdateOrganizationResponse :
43464379 properties :
43474380 organization :
@@ -4750,8 +4783,6 @@ components:
47504783 $ref : ' #/components/schemas/AWS.Role'
47514784 node_security_group :
47524785 $ref : ' #/components/schemas/AWSSecurityGroup'
4753- oxla_node_group_instance_profile :
4754- $ref : ' #/components/schemas/AWSInstanceProfile'
47554786 permissions_boundary_policy :
47564787 $ref : ' #/components/schemas/Policy'
47574788 redpanda_agent_security_group :
@@ -4764,6 +4795,10 @@ components:
47644795 $ref : ' #/components/schemas/AWSInstanceProfile'
47654796 redpanda_node_group_security_group :
47664797 $ref : ' #/components/schemas/AWSSecurityGroup'
4798+ rpsql_cloud_storage_bucket :
4799+ $ref : ' #/components/schemas/CustomerManagedAWSCloudStorageBucket'
4800+ rpsql_node_group_instance_profile :
4801+ $ref : ' #/components/schemas/AWSInstanceProfile'
47674802 rpsql_security_group :
47684803 $ref : ' #/components/schemas/AWSSecurityGroup'
47694804 utility_node_group_instance_profile :
@@ -5319,6 +5354,7 @@ paths:
53195354 prometheus :
53205355 url : https://console-aa0000l0.cjd3r21c4vs870t0ku30.fmc.prd.cloud.redpanda.com/api/cloud/prometheus/public_metrics
53215356 read_replica_cluster_ids : []
5357+ redpanda_connect : null
53225358 redpanda_console :
53235359 url : https://console-aa0000l0.cjd3r21c4vs870t0ku30.fmc.prd.cloud.redpanda.com/api
53245360 redpanda_node_count : 0
@@ -5668,6 +5704,7 @@ paths:
56685704 prometheus :
56695705 url : https://console-aa0000l0.cjd3r21c4vs870t0ku30.fmc.prd.cloud.redpanda.com/api/cloud/prometheus/public_metrics
56705706 read_replica_cluster_ids : []
5707+ redpanda_connect : null
56715708 redpanda_console :
56725709 url : https://console-aa0000l0.cjd3r21c4vs870t0ku30.fmc.prd.cloud.redpanda.com/api
56735710 redpanda_node_count : 0
@@ -6332,6 +6369,60 @@ paths:
63326369 summary : Get network
63336370 tags :
63346371 - Networks
6372+ /v1/networks/{network.id} :
6373+ patch :
6374+ description : Update a Redpanda network.
6375+ operationId : NetworkService_UpdateNetwork
6376+ parameters :
6377+ - description : ID of the network.
6378+ in : path
6379+ name : network.id
6380+ required : true
6381+ schema :
6382+ type : string
6383+ requestBody :
6384+ content :
6385+ application/json :
6386+ schema :
6387+ description : Resource describing an Update Network.
6388+ required :
6389+ - network
6390+ title : NetworkUpdate
6391+ type : object
6392+ description : |-
6393+ NetworkUpdate
6394+
6395+ Resource describing an Update Network.
6396+ required : true
6397+ x-originalParamName : network
6398+ responses :
6399+ " 202 " :
6400+ content :
6401+ application/json :
6402+ schema :
6403+ $ref : ' #/components/schemas/UpdateNetworkOperation'
6404+ description : Accepted
6405+ " 404 " :
6406+ content :
6407+ application/json :
6408+ schema :
6409+ $ref : ' #/components/schemas/rpc.Status'
6410+ description : Not Found
6411+ " 500 " :
6412+ content :
6413+ application/json :
6414+ schema :
6415+ $ref : ' #/components/schemas/rpc.Status'
6416+ description : Internal Server Error. Please reach out to support.
6417+ default :
6418+ content :
6419+ application/json :
6420+ schema :
6421+ $ref : ' #/components/schemas/rpc.Status'
6422+ description : An unexpected error response.
6423+ summary : Update network
6424+ tags :
6425+ - Networks
63356426 /v1/operations :
63366427 get :
63376428 description : List operations. This is a generic endpoint and can be used to list any type of operation.
@@ -6356,6 +6447,7 @@ paths:
63566447 - TYPE_DELETE_SERVERLESS_PRIVATE_LINK
63576448 - TYPE_CREATE_NETWORK_PEERING
63586449 - TYPE_DELETE_NETWORK_PEERING
6450+ - TYPE_UPDATE_NETWORK
63596451 - TYPE_CREATE_SHADOW_LINK
63606452 - TYPE_UPDATE_SHADOW_LINK
63616453 - TYPE_DELETE_SHADOW_LINK
@@ -6477,6 +6569,7 @@ paths:
64776569 prometheus :
64786570 url : https://console-aa0000l0.cjb69h1c4vs42pca89s0.fmc.prd.cloud.redpanda.com/api/cloud/prometheus/public_metrics
64796571 read_replica_cluster_ids : []
6572+ redpanda_connect : null
64806573 redpanda_console :
64816574 url : https://console-aa0000l0.cjb69h1c4vs42pca89s0.fmc.prd.cloud.redpanda.com/api
64826575 redpanda_node_count : 0
@@ -6608,6 +6701,7 @@ paths:
66086701 prometheus :
66096702 url : https://console-aa0000l0.cjb69h1c4vs42pca89s0.fmc.prd.cloud.redpanda.com/api/cloud/prometheus/public_metrics
66106703 read_replica_cluster_ids : []
6704+ redpanda_connect : null
66116705 redpanda_console :
66126706 url : https://console-aa0000l0.cjb69h1c4vs42pca89s0.fmc.prd.cloud.redpanda.com/api
66136707 redpanda_node_count : 0
0 commit comments