@@ -46,6 +46,7 @@ def delete_api_endpoint(self, request: operations.DeleteAPIEndpointRequest) -> o
4646 res .error = out
4747
4848 return res
49+
4950 def find_api_endpoint (self , request : operations .FindAPIEndpointRequest ) -> operations .FindAPIEndpointResponse :
5051 r"""Find an ApiEndpoint via its displayName.
5152 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
7677 res .error = out
7778
7879 return res
80+
7981 def generate_open_api_spec_for_api_endpoint (self , request : operations .GenerateOpenAPISpecForAPIEndpointRequest ) -> operations .GenerateOpenAPISpecForAPIEndpointResponse :
8082 r"""Generate an OpenAPI specification for a particular ApiEndpoint.
8183 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
106108 res .error = out
107109
108110 return res
111+
109112 def generate_postman_collection_for_api_endpoint (self , request : operations .GeneratePostmanCollectionForAPIEndpointRequest ) -> operations .GeneratePostmanCollectionForAPIEndpointResponse :
110113 r"""Generate a Postman collection for a particular ApiEndpoint.
111114 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
134137 res .error = out
135138
136139 return res
140+
137141 def get_all_api_endpoints (self , request : operations .GetAllAPIEndpointsRequest ) -> operations .GetAllAPIEndpointsResponse :
138142 r"""Get all Api endpoints for a particular apiID.
139143 """
@@ -162,6 +166,7 @@ def get_all_api_endpoints(self, request: operations.GetAllAPIEndpointsRequest) -
162166 res .error = out
163167
164168 return res
169+
165170 def get_all_for_version_api_endpoints (self , request : operations .GetAllForVersionAPIEndpointsRequest ) -> operations .GetAllForVersionAPIEndpointsResponse :
166171 r"""Get all ApiEndpoints for a particular apiID and versionID.
167172 """
@@ -190,6 +195,7 @@ def get_all_for_version_api_endpoints(self, request: operations.GetAllForVersion
190195 res .error = out
191196
192197 return res
198+
193199 def get_api_endpoint (self , request : operations .GetAPIEndpointRequest ) -> operations .GetAPIEndpointResponse :
194200 r"""Get an ApiEndpoint.
195201 """
@@ -218,6 +224,7 @@ def get_api_endpoint(self, request: operations.GetAPIEndpointRequest) -> operati
218224 res .error = out
219225
220226 return res
227+
221228 def upsert_api_endpoint (self , request : operations .UpsertAPIEndpointRequest ) -> operations .UpsertAPIEndpointResponse :
222229 r"""Upsert an ApiEndpoint.
223230 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
252259 res .error = out
253260
254261 return res
262+
255263
0 commit comments