@@ -46,6 +46,7 @@ def delete_api_endpoint(self, request: operations.DeleteAPIEndpointRequest) -> o
46
46
res .error = out
47
47
48
48
return res
49
+
49
50
def find_api_endpoint (self , request : operations .FindAPIEndpointRequest ) -> operations .FindAPIEndpointResponse :
50
51
r"""Find an ApiEndpoint via its displayName.
51
52
Find an ApiEndpoint via its displayName (set by operationId from a registered OpenAPI schema).
@@ -76,6 +77,7 @@ def find_api_endpoint(self, request: operations.FindAPIEndpointRequest) -> opera
76
77
res .error = out
77
78
78
79
return res
80
+
79
81
def generate_open_api_spec_for_api_endpoint (self , request : operations .GenerateOpenAPISpecForAPIEndpointRequest ) -> operations .GenerateOpenAPISpecForAPIEndpointResponse :
80
82
r"""Generate an OpenAPI specification for a particular ApiEndpoint.
81
83
This endpoint will generate a new operation in any registered OpenAPI document if the operation does not already exist in the document.
@@ -106,6 +108,7 @@ def generate_open_api_spec_for_api_endpoint(self, request: operations.GenerateOp
106
108
res .error = out
107
109
108
110
return res
111
+
109
112
def generate_postman_collection_for_api_endpoint (self , request : operations .GeneratePostmanCollectionForAPIEndpointRequest ) -> operations .GeneratePostmanCollectionForAPIEndpointResponse :
110
113
r"""Generate a Postman collection for a particular ApiEndpoint.
111
114
Generates a postman collection that allows the endpoint to be called from postman variables produced for any path/query/header parameters included in the OpenAPI document.
@@ -134,6 +137,7 @@ def generate_postman_collection_for_api_endpoint(self, request: operations.Gener
134
137
res .error = out
135
138
136
139
return res
140
+
137
141
def get_all_api_endpoints (self , request : operations .GetAllAPIEndpointsRequest ) -> operations .GetAllAPIEndpointsResponse :
138
142
r"""Get all Api endpoints for a particular apiID.
139
143
"""
@@ -162,6 +166,7 @@ def get_all_api_endpoints(self, request: operations.GetAllAPIEndpointsRequest) -
162
166
res .error = out
163
167
164
168
return res
169
+
165
170
def get_all_for_version_api_endpoints (self , request : operations .GetAllForVersionAPIEndpointsRequest ) -> operations .GetAllForVersionAPIEndpointsResponse :
166
171
r"""Get all ApiEndpoints for a particular apiID and versionID.
167
172
"""
@@ -190,6 +195,7 @@ def get_all_for_version_api_endpoints(self, request: operations.GetAllForVersion
190
195
res .error = out
191
196
192
197
return res
198
+
193
199
def get_api_endpoint (self , request : operations .GetAPIEndpointRequest ) -> operations .GetAPIEndpointResponse :
194
200
r"""Get an ApiEndpoint.
195
201
"""
@@ -218,6 +224,7 @@ def get_api_endpoint(self, request: operations.GetAPIEndpointRequest) -> operati
218
224
res .error = out
219
225
220
226
return res
227
+
221
228
def upsert_api_endpoint (self , request : operations .UpsertAPIEndpointRequest ) -> operations .UpsertAPIEndpointResponse :
222
229
r"""Upsert an ApiEndpoint.
223
230
Upsert an ApiEndpoint. If the ApiEndpoint does not exist it will be created, otherwise it will be updated.
@@ -252,4 +259,5 @@ def upsert_api_endpoint(self, request: operations.UpsertAPIEndpointRequest) -> o
252
259
res .error = out
253
260
254
261
return res
262
+
255
263
0 commit comments