-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdk-config.yaml
74 lines (72 loc) · 1.74 KB
/
sdk-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
api: my-petstore # an API id from a private Sideko org for the petstore API specification
languages:
python:
sdk_name: my_petstore_py
typescript:
sdk_name: my_petstore_ts
servers:
- url: https://petstore3.swagger.io/api/v3
name: production
default: true
auths:
- id: api_key # identifier for the security scheme in the specification
param: api_key
- id: petstore_auth
param: oauth_token
modules:
- path: pet
operations:
- id: addPet
function_name: create
- id: deletePet
function_name: delete
- id: getPetById
function_name: get
- id: updatePet
function_name: update
- id: updatePetWithForm
function_name: update_form
- path: pet.status
operations:
- id: findPetsByStatus
function_name: list
- path: pet.tag
operations:
- id: findPetsByTags
function_name: list
- path: pet.image
operations:
- id: uploadFile
function_name: upload
- path: store.inventory
operations:
- id: getInventory
function_name: get
- path: store.order
operations:
- id: deleteOrder
function_name: delete
- id: getOrderById
function_name: get
- id: placeOrder
function_name: place
- path: user
operations:
- id: createUser
function_name: create
- id: deleteUser
function_name: delete
- id: getUserByName
function_name: get
- id: updateUser
function_name: update
- path: user.create_with_list
operations:
- id: createUsersWithListInput
function_name: create
- path: auth
operations:
- id: logoutUser
function_name: logout
- id: loginUser
function_name: login