Skip to content

Commit f513add

Browse files
committed
update petstore samples
1 parent b5f42b9 commit f513add

File tree

121 files changed

+1193
-2531
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1193
-2531
lines changed
File renamed without changes.

samples/client/petstore/R/git_push.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#!/bin/sh
22
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
33
#
4-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update"
4+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
55

66
git_user_id=$1
77
git_repo_id=$2
88
release_note=$3
9+
git_host=$4
10+
11+
if [ "$git_host" = "" ]; then
12+
git_host="github.com"
13+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
14+
fi
915

1016
if [ "$git_user_id" = "" ]; then
1117
git_user_id="GIT_USER_ID"
@@ -37,16 +43,16 @@ if [ "$git_remote" = "" ]; then # git remote not defined
3743

3844
if [ "$GIT_TOKEN" = "" ]; then
3945
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
40-
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
46+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
4147
else
42-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
48+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
4349
fi
4450

4551
fi
4652

4753
git pull origin master
4854

4955
# Pushes (Forces) the changes in the local repository up to the remote repository
50-
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
56+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
5157
git push origin master 2>&1 | grep -v 'To https'
5258

samples/client/petstore/csharp-netcore/OpenAPIClient/git_push.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#!/bin/sh
22
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
33
#
4-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update"
4+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
55

66
git_user_id=$1
77
git_repo_id=$2
88
release_note=$3
9+
git_host=$4
10+
11+
if [ "$git_host" = "" ]; then
12+
git_host="github.com"
13+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
14+
fi
915

1016
if [ "$git_user_id" = "" ]; then
1117
git_user_id="GIT_USER_ID"
@@ -37,16 +43,16 @@ if [ "$git_remote" = "" ]; then # git remote not defined
3743

3844
if [ "$GIT_TOKEN" = "" ]; then
3945
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
40-
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
46+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
4147
else
42-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
48+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
4349
fi
4450

4551
fi
4652

4753
git pull origin master
4854

4955
# Pushes (Forces) the changes in the local repository up to the remote repository
50-
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
56+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
5157
git push origin master 2>&1 | grep -v 'To https'
5258

samples/client/petstore/csharp-netcore/OpenAPIClientCore/git_push.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#!/bin/sh
22
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
33
#
4-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update"
4+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
55

66
git_user_id=$1
77
git_repo_id=$2
88
release_note=$3
9+
git_host=$4
10+
11+
if [ "$git_host" = "" ]; then
12+
git_host="github.com"
13+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
14+
fi
915

1016
if [ "$git_user_id" = "" ]; then
1117
git_user_id="GIT_USER_ID"
@@ -37,16 +43,16 @@ if [ "$git_remote" = "" ]; then # git remote not defined
3743

3844
if [ "$GIT_TOKEN" = "" ]; then
3945
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
40-
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
46+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
4147
else
42-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
48+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
4349
fi
4450

4551
fi
4652

4753
git pull origin master
4854

4955
# Pushes (Forces) the changes in the local repository up to the remote repository
50-
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
56+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
5157
git push origin master 2>&1 | grep -v 'To https'
5258

samples/client/petstore/csharp/OpenAPIClient/git_push.sh

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#!/bin/sh
22
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
33
#
4-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update"
4+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
55

66
git_user_id=$1
77
git_repo_id=$2
88
release_note=$3
9+
git_host=$4
10+
11+
if [ "$git_host" = "" ]; then
12+
git_host="github.com"
13+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
14+
fi
915

1016
if [ "$git_user_id" = "" ]; then
1117
git_user_id="GIT_USER_ID"
@@ -37,16 +43,16 @@ if [ "$git_remote" = "" ]; then # git remote not defined
3743

3844
if [ "$GIT_TOKEN" = "" ]; then
3945
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
40-
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
46+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
4147
else
42-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
48+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
4349
fi
4450

4551
fi
4652

4753
git pull origin master
4854

4955
# Pushes (Forces) the changes in the local repository up to the remote repository
50-
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
56+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
5157
git push origin master 2>&1 | grep -v 'To https'
5258

samples/client/petstore/dart-jaguar/flutter_petstore/openapi/README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -72,36 +72,36 @@ All URIs are relative to *http://petstore.swagger.io/v2*
7272

7373
Class | Method | HTTP request | Description
7474
------------ | ------------- | ------------- | -------------
75-
*PetApi* | [**addPet**](docs//PetApi.md#addpet) | **Post** /pet | Add a new pet to the store
76-
*PetApi* | [**deletePet**](docs//PetApi.md#deletepet) | **Delete** /pet/:petId | Deletes a pet
77-
*PetApi* | [**findPetsByStatus**](docs//PetApi.md#findpetsbystatus) | **Get** /pet/findByStatus | Finds Pets by status
78-
*PetApi* | [**findPetsByTags**](docs//PetApi.md#findpetsbytags) | **Get** /pet/findByTags | Finds Pets by tags
79-
*PetApi* | [**getPetById**](docs//PetApi.md#getpetbyid) | **Get** /pet/:petId | Find pet by ID
80-
*PetApi* | [**updatePet**](docs//PetApi.md#updatepet) | **Put** /pet | Update an existing pet
81-
*PetApi* | [**updatePetWithForm**](docs//PetApi.md#updatepetwithform) | **Post** /pet/:petId | Updates a pet in the store with form data
82-
*PetApi* | [**uploadFile**](docs//PetApi.md#uploadfile) | **Post** /pet/:petId/uploadImage | uploads an image
83-
*StoreApi* | [**deleteOrder**](docs//StoreApi.md#deleteorder) | **Delete** /store/order/:orderId | Delete purchase order by ID
84-
*StoreApi* | [**getInventory**](docs//StoreApi.md#getinventory) | **Get** /store/inventory | Returns pet inventories by status
85-
*StoreApi* | [**getOrderById**](docs//StoreApi.md#getorderbyid) | **Get** /store/order/:orderId | Find purchase order by ID
86-
*StoreApi* | [**placeOrder**](docs//StoreApi.md#placeorder) | **Post** /store/order | Place an order for a pet
87-
*UserApi* | [**createUser**](docs//UserApi.md#createuser) | **Post** /user | Create user
88-
*UserApi* | [**createUsersWithArrayInput**](docs//UserApi.md#createuserswitharrayinput) | **Post** /user/createWithArray | Creates list of users with given input array
89-
*UserApi* | [**createUsersWithListInput**](docs//UserApi.md#createuserswithlistinput) | **Post** /user/createWithList | Creates list of users with given input array
90-
*UserApi* | [**deleteUser**](docs//UserApi.md#deleteuser) | **Delete** /user/:username | Delete user
91-
*UserApi* | [**getUserByName**](docs//UserApi.md#getuserbyname) | **Get** /user/:username | Get user by user name
92-
*UserApi* | [**loginUser**](docs//UserApi.md#loginuser) | **Get** /user/login | Logs user into the system
93-
*UserApi* | [**logoutUser**](docs//UserApi.md#logoutuser) | **Get** /user/logout | Logs out current logged in user session
94-
*UserApi* | [**updateUser**](docs//UserApi.md#updateuser) | **Put** /user/:username | Updated user
75+
*PetApi* | [**addPet**](docs\/PetApi.md#addpet) | **Post** /pet | Add a new pet to the store
76+
*PetApi* | [**deletePet**](docs\/PetApi.md#deletepet) | **Delete** /pet/:petId | Deletes a pet
77+
*PetApi* | [**findPetsByStatus**](docs\/PetApi.md#findpetsbystatus) | **Get** /pet/findByStatus | Finds Pets by status
78+
*PetApi* | [**findPetsByTags**](docs\/PetApi.md#findpetsbytags) | **Get** /pet/findByTags | Finds Pets by tags
79+
*PetApi* | [**getPetById**](docs\/PetApi.md#getpetbyid) | **Get** /pet/:petId | Find pet by ID
80+
*PetApi* | [**updatePet**](docs\/PetApi.md#updatepet) | **Put** /pet | Update an existing pet
81+
*PetApi* | [**updatePetWithForm**](docs\/PetApi.md#updatepetwithform) | **Post** /pet/:petId | Updates a pet in the store with form data
82+
*PetApi* | [**uploadFile**](docs\/PetApi.md#uploadfile) | **Post** /pet/:petId/uploadImage | uploads an image
83+
*StoreApi* | [**deleteOrder**](docs\/StoreApi.md#deleteorder) | **Delete** /store/order/:orderId | Delete purchase order by ID
84+
*StoreApi* | [**getInventory**](docs\/StoreApi.md#getinventory) | **Get** /store/inventory | Returns pet inventories by status
85+
*StoreApi* | [**getOrderById**](docs\/StoreApi.md#getorderbyid) | **Get** /store/order/:orderId | Find purchase order by ID
86+
*StoreApi* | [**placeOrder**](docs\/StoreApi.md#placeorder) | **Post** /store/order | Place an order for a pet
87+
*UserApi* | [**createUser**](docs\/UserApi.md#createuser) | **Post** /user | Create user
88+
*UserApi* | [**createUsersWithArrayInput**](docs\/UserApi.md#createuserswitharrayinput) | **Post** /user/createWithArray | Creates list of users with given input array
89+
*UserApi* | [**createUsersWithListInput**](docs\/UserApi.md#createuserswithlistinput) | **Post** /user/createWithList | Creates list of users with given input array
90+
*UserApi* | [**deleteUser**](docs\/UserApi.md#deleteuser) | **Delete** /user/:username | Delete user
91+
*UserApi* | [**getUserByName**](docs\/UserApi.md#getuserbyname) | **Get** /user/:username | Get user by user name
92+
*UserApi* | [**loginUser**](docs\/UserApi.md#loginuser) | **Get** /user/login | Logs user into the system
93+
*UserApi* | [**logoutUser**](docs\/UserApi.md#logoutuser) | **Get** /user/logout | Logs out current logged in user session
94+
*UserApi* | [**updateUser**](docs\/UserApi.md#updateuser) | **Put** /user/:username | Updated user
9595

9696

9797
## Documentation For Models
9898

99-
- [ApiResponse](docs//ApiResponse.md)
100-
- [Category](docs//Category.md)
101-
- [Order](docs//Order.md)
102-
- [Pet](docs//Pet.md)
103-
- [Tag](docs//Tag.md)
104-
- [User](docs//User.md)
99+
- [ApiResponse](docs\/ApiResponse.md)
100+
- [Category](docs\/Category.md)
101+
- [Order](docs\/Order.md)
102+
- [Pet](docs\/Pet.md)
103+
- [Tag](docs\/Tag.md)
104+
- [User](docs\/User.md)
105105

106106

107107
## Documentation For Authorization

samples/client/petstore/dart-jaguar/flutter_petstore/openapi/git_push.sh

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#!/bin/sh
22
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
33
#
4-
# Usage example: /bin/sh ./git_push.sh wing328 swagger-petstore "minor update"
4+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
55

66
git_user_id=$1
77
git_repo_id=$2
88
release_note=$3
9+
git_host=$4
10+
11+
if [ "$git_host" = "" ]; then
12+
git_host="github.com"
13+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
14+
fi
915

1016
if [ "$git_user_id" = "" ]; then
1117
git_user_id="GIT_USER_ID"
@@ -28,7 +34,7 @@ git init
2834
# Adds the files in the local repository and stages them for commit.
2935
git add .
3036

31-
# Commits the tracked changes and prepares them to be pushed to a remote repository.
37+
# Commits the tracked changes and prepares them to be pushed to a remote repository.
3238
git commit -m "$release_note"
3339

3440
# Sets the new remote
@@ -37,16 +43,16 @@ if [ "$git_remote" = "" ]; then # git remote not defined
3743

3844
if [ "$GIT_TOKEN" = "" ]; then
3945
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
40-
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
46+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
4147
else
42-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
48+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
4349
fi
4450

4551
fi
4652

4753
git pull origin master
4854

4955
# Pushes (Forces) the changes in the local repository up to the remote repository
50-
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
56+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
5157
git push origin master 2>&1 | grep -v 'To https'
5258

samples/client/petstore/dart-jaguar/flutter_proto_petstore/openapi/README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -72,36 +72,36 @@ All URIs are relative to *http://petstore.swagger.io/v2*
7272

7373
Class | Method | HTTP request | Description
7474
------------ | ------------- | ------------- | -------------
75-
*PetApi* | [**addPet**](docs//PetApi.md#addpet) | **Post** /pet | Add a new pet to the store
76-
*PetApi* | [**deletePet**](docs//PetApi.md#deletepet) | **Delete** /pet/:petId | Deletes a pet
77-
*PetApi* | [**findPetsByStatus**](docs//PetApi.md#findpetsbystatus) | **Get** /pet/findByStatus | Finds Pets by status
78-
*PetApi* | [**findPetsByTags**](docs//PetApi.md#findpetsbytags) | **Get** /pet/findByTags | Finds Pets by tags
79-
*PetApi* | [**getPetById**](docs//PetApi.md#getpetbyid) | **Get** /pet/:petId | Find pet by ID
80-
*PetApi* | [**updatePet**](docs//PetApi.md#updatepet) | **Put** /pet | Update an existing pet
81-
*PetApi* | [**updatePetWithForm**](docs//PetApi.md#updatepetwithform) | **Post** /pet/:petId | Updates a pet in the store with form data
82-
*PetApi* | [**uploadFile**](docs//PetApi.md#uploadfile) | **Post** /pet/:petId/uploadImage | uploads an image
83-
*StoreApi* | [**deleteOrder**](docs//StoreApi.md#deleteorder) | **Delete** /store/order/:orderId | Delete purchase order by ID
84-
*StoreApi* | [**getInventory**](docs//StoreApi.md#getinventory) | **Get** /store/inventory | Returns pet inventories by status
85-
*StoreApi* | [**getOrderById**](docs//StoreApi.md#getorderbyid) | **Get** /store/order/:orderId | Find purchase order by ID
86-
*StoreApi* | [**placeOrder**](docs//StoreApi.md#placeorder) | **Post** /store/order | Place an order for a pet
87-
*UserApi* | [**createUser**](docs//UserApi.md#createuser) | **Post** /user | Create user
88-
*UserApi* | [**createUsersWithArrayInput**](docs//UserApi.md#createuserswitharrayinput) | **Post** /user/createWithArray | Creates list of users with given input array
89-
*UserApi* | [**createUsersWithListInput**](docs//UserApi.md#createuserswithlistinput) | **Post** /user/createWithList | Creates list of users with given input array
90-
*UserApi* | [**deleteUser**](docs//UserApi.md#deleteuser) | **Delete** /user/:username | Delete user
91-
*UserApi* | [**getUserByName**](docs//UserApi.md#getuserbyname) | **Get** /user/:username | Get user by user name
92-
*UserApi* | [**loginUser**](docs//UserApi.md#loginuser) | **Get** /user/login | Logs user into the system
93-
*UserApi* | [**logoutUser**](docs//UserApi.md#logoutuser) | **Get** /user/logout | Logs out current logged in user session
94-
*UserApi* | [**updateUser**](docs//UserApi.md#updateuser) | **Put** /user/:username | Updated user
75+
*PetApi* | [**addPet**](docs\/PetApi.md#addpet) | **Post** /pet | Add a new pet to the store
76+
*PetApi* | [**deletePet**](docs\/PetApi.md#deletepet) | **Delete** /pet/:petId | Deletes a pet
77+
*PetApi* | [**findPetsByStatus**](docs\/PetApi.md#findpetsbystatus) | **Get** /pet/findByStatus | Finds Pets by status
78+
*PetApi* | [**findPetsByTags**](docs\/PetApi.md#findpetsbytags) | **Get** /pet/findByTags | Finds Pets by tags
79+
*PetApi* | [**getPetById**](docs\/PetApi.md#getpetbyid) | **Get** /pet/:petId | Find pet by ID
80+
*PetApi* | [**updatePet**](docs\/PetApi.md#updatepet) | **Put** /pet | Update an existing pet
81+
*PetApi* | [**updatePetWithForm**](docs\/PetApi.md#updatepetwithform) | **Post** /pet/:petId | Updates a pet in the store with form data
82+
*PetApi* | [**uploadFile**](docs\/PetApi.md#uploadfile) | **Post** /pet/:petId/uploadImage | uploads an image
83+
*StoreApi* | [**deleteOrder**](docs\/StoreApi.md#deleteorder) | **Delete** /store/order/:orderId | Delete purchase order by ID
84+
*StoreApi* | [**getInventory**](docs\/StoreApi.md#getinventory) | **Get** /store/inventory | Returns pet inventories by status
85+
*StoreApi* | [**getOrderById**](docs\/StoreApi.md#getorderbyid) | **Get** /store/order/:orderId | Find purchase order by ID
86+
*StoreApi* | [**placeOrder**](docs\/StoreApi.md#placeorder) | **Post** /store/order | Place an order for a pet
87+
*UserApi* | [**createUser**](docs\/UserApi.md#createuser) | **Post** /user | Create user
88+
*UserApi* | [**createUsersWithArrayInput**](docs\/UserApi.md#createuserswitharrayinput) | **Post** /user/createWithArray | Creates list of users with given input array
89+
*UserApi* | [**createUsersWithListInput**](docs\/UserApi.md#createuserswithlistinput) | **Post** /user/createWithList | Creates list of users with given input array
90+
*UserApi* | [**deleteUser**](docs\/UserApi.md#deleteuser) | **Delete** /user/:username | Delete user
91+
*UserApi* | [**getUserByName**](docs\/UserApi.md#getuserbyname) | **Get** /user/:username | Get user by user name
92+
*UserApi* | [**loginUser**](docs\/UserApi.md#loginuser) | **Get** /user/login | Logs user into the system
93+
*UserApi* | [**logoutUser**](docs\/UserApi.md#logoutuser) | **Get** /user/logout | Logs out current logged in user session
94+
*UserApi* | [**updateUser**](docs\/UserApi.md#updateuser) | **Put** /user/:username | Updated user
9595

9696

9797
## Documentation For Models
9898

99-
- [ApiResponse](docs//ApiResponse.md)
100-
- [Category](docs//Category.md)
101-
- [Order](docs//Order.md)
102-
- [Pet](docs//Pet.md)
103-
- [Tag](docs//Tag.md)
104-
- [User](docs//User.md)
99+
- [ApiResponse](docs\/ApiResponse.md)
100+
- [Category](docs\/Category.md)
101+
- [Order](docs\/Order.md)
102+
- [Pet](docs\/Pet.md)
103+
- [Tag](docs\/Tag.md)
104+
- [User](docs\/User.md)
105105

106106

107107
## Documentation For Authorization

0 commit comments

Comments
 (0)