Commit e1ce97fe authored by Yann Garcia's avatar Yann Garcia
Browse files

Bug fixed in demo6 swagger file; Update python Jupyter notebook

parent 9da8a56d
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -450,7 +450,7 @@ paths:
        schema:
          type: string
      requestBody:
        description: Pet to add to the store
        description: The application description
        content:
          application/json:
            schema:
@@ -463,10 +463,7 @@ paths:
          content:
            application/json:
              schema:
                type: array
                items:
                $ref: '#/components/schemas/ApplicationInfo'
                x-content-type: application/json
        "400":
          description: "Bad Request : used to indicate that incorrect parameters were\
            \ passed to the request."
+8 −8
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ class SandboxAppInstancesApi(object):

        :param async_req bool
        :param str sandbox_name: Sandbox identifier (required)
        :return: list[ApplicationInfo]
        :return: list[SandboxAppInstances]
                 If the method is called asynchronously,
                 returns the request thread.
        """
@@ -164,7 +164,7 @@ class SandboxAppInstancesApi(object):

        :param async_req bool
        :param str sandbox_name: Sandbox identifier (required)
        :return: list[ApplicationInfo]
        :return: list[SandboxAppInstances]
                 If the method is called asynchronously,
                 returns the request thread.
        """
@@ -218,7 +218,7 @@ class SandboxAppInstancesApi(object):
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[ApplicationInfo]',  # noqa: E501
            response_type='list[SandboxAppInstances]',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
@@ -236,9 +236,9 @@ class SandboxAppInstancesApi(object):
        >>> result = thread.get()

        :param async_req bool
        :param ApplicationInfo body: Pet to add to the store (required)
        :param ApplicationInfo body: The application description (required)
        :param str sandbox_name: Sandbox identifier (required)
        :return: list[ApplicationInfo]
        :return: ApplicationInfo
                 If the method is called asynchronously,
                 returns the request thread.
        """
@@ -259,9 +259,9 @@ class SandboxAppInstancesApi(object):
        >>> result = thread.get()

        :param async_req bool
        :param ApplicationInfo body: Pet to add to the store (required)
        :param ApplicationInfo body: The application description (required)
        :param str sandbox_name: Sandbox identifier (required)
        :return: list[ApplicationInfo]
        :return: ApplicationInfo
                 If the method is called asynchronously,
                 returns the request thread.
        """
@@ -325,7 +325,7 @@ class SandboxAppInstancesApi(object):
            body=body_params,
            post_params=form_params,
            files=local_var_files,
            response_type='list[ApplicationInfo]',  # noqa: E501
            response_type='ApplicationInfo',  # noqa: E501
            auth_settings=auth_settings,
            async_req=params.get('async_req'),
            _return_http_data_only=params.get('_return_http_data_only'),
+286 −117

File changed.

Preview size limit exceeded, changes collapsed.

+281 −124

File changed.

Preview size limit exceeded, changes collapsed.