@@ -33,9 +33,9 @@ s = speakeasy.Speakeasy(
33
33
)
34
34
35
35
req = operations.DeleteAPIEndpointRequest(
36
- api_endpoint_id = ' blue ' ,
37
- api_id = ' Gasoline ' ,
38
- version_id = ' Southwest ' ,
36
+ api_endpoint_id = ' string ' ,
37
+ api_id = ' string ' ,
38
+ version_id = ' string ' ,
39
39
)
40
40
41
41
res = s.api_endpoints.delete_api_endpoint(req)
@@ -75,9 +75,9 @@ s = speakeasy.Speakeasy(
75
75
)
76
76
77
77
req = operations.FindAPIEndpointRequest(
78
- api_id = ' Cotton ' ,
79
- display_name = ' Chief ' ,
80
- version_id = ' Wooden ' ,
78
+ api_id = ' string ' ,
79
+ display_name = ' string ' ,
80
+ version_id = ' string ' ,
81
81
)
82
82
83
83
res = s.api_endpoints.find_api_endpoint(req)
@@ -117,9 +117,9 @@ s = speakeasy.Speakeasy(
117
117
)
118
118
119
119
req = operations.GenerateOpenAPISpecForAPIEndpointRequest(
120
- api_endpoint_id = ' Mazda ' ,
121
- api_id = ' web ' ,
122
- version_id = ' explicabo ' ,
120
+ api_endpoint_id = ' string ' ,
121
+ api_id = ' string ' ,
122
+ version_id = ' string ' ,
123
123
)
124
124
125
125
res = s.api_endpoints.generate_open_api_spec_for_api_endpoint(req)
@@ -158,9 +158,9 @@ s = speakeasy.Speakeasy(
158
158
)
159
159
160
160
req = operations.GeneratePostmanCollectionForAPIEndpointRequest(
161
- api_endpoint_id = ' indigo ' ,
162
- api_id = ' barring ' ,
163
- version_id = ' Senior ' ,
161
+ api_endpoint_id = ' string ' ,
162
+ api_id = ' string ' ,
163
+ version_id = ' string ' ,
164
164
)
165
165
166
166
res = s.api_endpoints.generate_postman_collection_for_api_endpoint(req)
@@ -199,7 +199,7 @@ s = speakeasy.Speakeasy(
199
199
)
200
200
201
201
req = operations.GetAllAPIEndpointsRequest(
202
- api_id = ' unless ' ,
202
+ api_id = ' string ' ,
203
203
)
204
204
205
205
res = s.api_endpoints.get_all_api_endpoints(req)
@@ -238,8 +238,8 @@ s = speakeasy.Speakeasy(
238
238
)
239
239
240
240
req = operations.GetAllForVersionAPIEndpointsRequest(
241
- api_id = ' now ' ,
242
- version_id = ' Diesel ' ,
241
+ api_id = ' string ' ,
242
+ version_id = ' string ' ,
243
243
)
244
244
245
245
res = s.api_endpoints.get_all_for_version_api_endpoints(req)
@@ -278,9 +278,9 @@ s = speakeasy.Speakeasy(
278
278
)
279
279
280
280
req = operations.GetAPIEndpointRequest(
281
- api_endpoint_id = ' flog ' ,
282
- api_id = ' synthesize ' ,
283
- version_id = ' Barium ' ,
281
+ api_endpoint_id = ' string ' ,
282
+ api_id = ' string ' ,
283
+ version_id = ' string ' ,
284
284
)
285
285
286
286
res = s.api_endpoints.get_api_endpoint(req)
@@ -320,16 +320,16 @@ s = speakeasy.Speakeasy(
320
320
321
321
req = operations.UpsertAPIEndpointRequest(
322
322
api_endpoint_input = shared.APIEndpointInput(
323
- api_endpoint_id = ' Facilitator ' ,
324
- description = ' Cross-group bottom-line productivity ' ,
325
- display_name = ' nor ' ,
326
- method = ' Northwest ' ,
327
- path = ' /private ' ,
328
- version_id = ' what ' ,
323
+ api_endpoint_id = ' string ' ,
324
+ description = ' Public-key systematic attitude ' ,
325
+ display_name = ' string ' ,
326
+ method = ' string ' ,
327
+ path = ' /etc/periodic ' ,
328
+ version_id = ' string ' ,
329
329
),
330
- api_endpoint_id = ' Trans ' ,
331
- api_id = ' Kia ' ,
332
- version_id = ' Electronic ' ,
330
+ api_endpoint_id = ' string ' ,
331
+ api_id = ' string ' ,
332
+ version_id = ' string ' ,
333
333
)
334
334
335
335
res = s.api_endpoints.upsert_api_endpoint(req)
0 commit comments