Akhil Nair a6bcef5b16
[PYTHON] Setting default value for Required variables (#10809)
* [req_vars_changes]

* Added new schema to generate samples to test the issue mentioned in the PR.

* Changed the variable name from setRequiredVars to initRequiredVars

* Added initRequiredVars as a generator additional property

* Regenerating the samples after rebasing the code with master branch

* Changed the description of additional property
2022-03-30 08:52:00 -07:00

174 lines
4.7 KiB
Plaintext

.gitignore
.gitlab-ci.yml
.travis.yml
README.md
docs/AdditionalPropertiesAnyType.md
docs/AdditionalPropertiesArray.md
docs/AdditionalPropertiesBoolean.md
docs/AdditionalPropertiesClass.md
docs/AdditionalPropertiesInteger.md
docs/AdditionalPropertiesNumber.md
docs/AdditionalPropertiesObject.md
docs/AdditionalPropertiesString.md
docs/Animal.md
docs/AnimalFarm.md
docs/AnotherFakeApi.md
docs/ApiResponse.md
docs/ArrayOfArrayOfNumberOnly.md
docs/ArrayOfNumberOnly.md
docs/ArrayTest.md
docs/Capitalization.md
docs/Cat.md
docs/CatAllOf.md
docs/Category.md
docs/Child.md
docs/ChildAllOf.md
docs/ChildCat.md
docs/ChildCatAllOf.md
docs/ChildDog.md
docs/ChildDogAllOf.md
docs/ChildLizard.md
docs/ChildLizardAllOf.md
docs/ClassModel.md
docs/Client.md
docs/Dog.md
docs/DogAllOf.md
docs/EnumArrays.md
docs/EnumClass.md
docs/EnumTest.md
docs/FakeApi.md
docs/FakeClassnameTags123Api.md
docs/File.md
docs/FileSchemaTestClass.md
docs/FormatTest.md
docs/Grandparent.md
docs/GrandparentAnimal.md
docs/HasOnlyReadOnly.md
docs/List.md
docs/MapTest.md
docs/MixedPropertiesAndAdditionalPropertiesClass.md
docs/Model200Response.md
docs/ModelReturn.md
docs/Name.md
docs/NumberOnly.md
docs/NumberWithValidations.md
docs/ObjectModelWithRefProps.md
docs/Order.md
docs/Parent.md
docs/ParentAllOf.md
docs/ParentPet.md
docs/Pet.md
docs/PetApi.md
docs/Player.md
docs/Polygon.md
docs/PolygonAllOf.md
docs/ReadOnlyFirst.md
docs/Shape.md
docs/SpecialModelName.md
docs/Square.md
docs/SquareAllOf.md
docs/StoreApi.md
docs/StringBooleanMap.md
docs/StringEnum.md
docs/Tag.md
docs/Triangle.md
docs/TriangleAllOf.md
docs/TypeHolderDefault.md
docs/TypeHolderExample.md
docs/User.md
docs/UserApi.md
docs/XmlItem.md
git_push.sh
petstore_api/__init__.py
petstore_api/api/__init__.py
petstore_api/api/another_fake_api.py
petstore_api/api/fake_api.py
petstore_api/api/fake_classname_tags123_api.py
petstore_api/api/pet_api.py
petstore_api/api/store_api.py
petstore_api/api/user_api.py
petstore_api/api_client.py
petstore_api/apis/__init__.py
petstore_api/configuration.py
petstore_api/exceptions.py
petstore_api/model/__init__.py
petstore_api/model/additional_properties_any_type.py
petstore_api/model/additional_properties_array.py
petstore_api/model/additional_properties_boolean.py
petstore_api/model/additional_properties_class.py
petstore_api/model/additional_properties_integer.py
petstore_api/model/additional_properties_number.py
petstore_api/model/additional_properties_object.py
petstore_api/model/additional_properties_string.py
petstore_api/model/animal.py
petstore_api/model/animal_farm.py
petstore_api/model/api_response.py
petstore_api/model/array_of_array_of_number_only.py
petstore_api/model/array_of_number_only.py
petstore_api/model/array_test.py
petstore_api/model/capitalization.py
petstore_api/model/cat.py
petstore_api/model/cat_all_of.py
petstore_api/model/category.py
petstore_api/model/child.py
petstore_api/model/child_all_of.py
petstore_api/model/child_cat.py
petstore_api/model/child_cat_all_of.py
petstore_api/model/child_dog.py
petstore_api/model/child_dog_all_of.py
petstore_api/model/child_lizard.py
petstore_api/model/child_lizard_all_of.py
petstore_api/model/class_model.py
petstore_api/model/client.py
petstore_api/model/dog.py
petstore_api/model/dog_all_of.py
petstore_api/model/enum_arrays.py
petstore_api/model/enum_class.py
petstore_api/model/enum_test.py
petstore_api/model/file.py
petstore_api/model/file_schema_test_class.py
petstore_api/model/format_test.py
petstore_api/model/grandparent.py
petstore_api/model/grandparent_animal.py
petstore_api/model/has_only_read_only.py
petstore_api/model/list.py
petstore_api/model/map_test.py
petstore_api/model/mixed_properties_and_additional_properties_class.py
petstore_api/model/model200_response.py
petstore_api/model/model_return.py
petstore_api/model/name.py
petstore_api/model/number_only.py
petstore_api/model/number_with_validations.py
petstore_api/model/object_model_with_ref_props.py
petstore_api/model/order.py
petstore_api/model/parent.py
petstore_api/model/parent_all_of.py
petstore_api/model/parent_pet.py
petstore_api/model/pet.py
petstore_api/model/player.py
petstore_api/model/polygon.py
petstore_api/model/polygon_all_of.py
petstore_api/model/read_only_first.py
petstore_api/model/shape.py
petstore_api/model/special_model_name.py
petstore_api/model/square.py
petstore_api/model/square_all_of.py
petstore_api/model/string_boolean_map.py
petstore_api/model/string_enum.py
petstore_api/model/tag.py
petstore_api/model/triangle.py
petstore_api/model/triangle_all_of.py
petstore_api/model/type_holder_default.py
petstore_api/model/type_holder_example.py
petstore_api/model/user.py
petstore_api/model/xml_item.py
petstore_api/model_utils.py
petstore_api/models/__init__.py
petstore_api/rest.py
requirements.txt
setup.cfg
setup.py
test-requirements.txt
test/__init__.py
tox.ini