Skip to content

Commit cc941ea

Browse files
Sergey Polyarusicreated
authored andcommitted
Renaming delete twingraph endpoint
1 parent 4af7443 commit cc941ea

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/Apis/TwingraphApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ All URIs are relative to *https://dev.api.cosmotech.com*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**delete**](TwingraphApi.md#delete) | **DELETE** /organizations/{organization_id}/delete/{graphId} |
7+
[**delete**](TwingraphApi.md#delete) | **DELETE** /organizations/{organization_id}/{graph_id} |
88
[**importGraph**](TwingraphApi.md#importGraph) | **POST** /organizations/{organization_id}/import |
99
[**query**](TwingraphApi.md#query) | **POST** /organizations/{organization_id}/query |
1010

1111

1212
<a name="delete"></a>
1313
# **delete**
14-
> delete(organization\_id, graphId)
14+
> delete(organization\_id, graph\_id)
1515
1616

1717

@@ -22,7 +22,7 @@ Method | HTTP request | Description
2222
Name | Type | Description | Notes
2323
------------- | ------------- | ------------- | -------------
2424
**organization\_id** | **String**| the Organization identifier | [default to null]
25-
**graphId** | **String**| the Graph Identifier | [default to null]
25+
**graph\_id** | **String**| the Graph Identifier | [default to null]
2626

2727
### Return type
2828

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Class | Method | HTTP request | Description
8888
*SolutionApi* | [**updateSolution**](Apis/SolutionApi.md#updatesolution) | **PATCH** /organizations/{organization_id}/solutions/{solution_id} | Update a solution
8989
*SolutionApi* | [**updateSolutionRunTemplate**](Apis/SolutionApi.md#updatesolutionruntemplate) | **PATCH** /organizations/{organization_id}/solutions/{solution_id}/runTemplates/{run_template_id} | Update the specified Solution Run Template
9090
*SolutionApi* | [**uploadRunTemplateHandler**](Apis/SolutionApi.md#uploadruntemplatehandler) | **POST** /organizations/{organization_id}/solutions/{solution_id}/runtemplates/{run_template_id}/handlers/{handler_id}/upload | Upload a Run Template step handler zip file
91-
*TwingraphApi* | [**delete**](Apis/TwingraphApi.md#delete) | **DELETE** /organizations/{organization_id}/delete/{graphId} | Launch a mass delete job
91+
*TwingraphApi* | [**delete**](Apis/TwingraphApi.md#delete) | **DELETE** /organizations/{organization_id}/{graph_id} | Launch a mass delete job
9292
*TwingraphApi* | [**importGraph**](Apis/TwingraphApi.md#importgraph) | **POST** /organizations/{organization_id}/import | Import a new version of a twin graph
9393
*TwingraphApi* | [**query**](Apis/TwingraphApi.md#query) | **POST** /organizations/{organization_id}/query | Run a query on a graph instance
9494
*UserApi* | [**authorizeUser**](Apis/UserApi.md#authorizeuser) | **GET** /oauth2/authorize | Authorize an User with OAuth2. Delegated to configured OAuth2 service

twingraph/src/main/openapi/twingraph.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ paths:
7777
application/json:
7878
schema:
7979
type: string
80-
/organizations/{organization_id}/delete/{graphId}:
80+
/organizations/{organization_id}/{graph_id}:
8181
parameters:
8282
- name: organization_id
8383
in: path
8484
description: the Organization identifier
8585
required: true
8686
schema:
8787
type: string
88-
- name: graphId
88+
- name: graph_id
8989
in: path
9090
description: the Graph Identifier
9191
required: true

0 commit comments

Comments
 (0)