���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/usr/share/mysqlsh/oci_sdk/oci/ |
# coding: utf-8 # Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from .constants import HEADER_NEXT_PAGE, HEADER_REQUEST_ID class Response(object): def __init__(self, status, headers, data, request): """ :param status: The HTTP status code for the Response :param headers: The HTTP headers for the Response :param data: The response data. The type of data depends on the request. :param request: The corresponding request for this response. :param next_page: (optional) The value of the `opc-next-page` response header. :param request_id: (optional) The ID of the request that generated this response. """ self.status = status """ The HTTP status code for the Response :type: int """ self.headers = headers """ The HTTP headers for the Response :type: :class:`requests.structures.CaseInsensitiveDict` """ self.data = data """ The response data. The type of data depends on the request. """ self.request = request """ The corresponding request for this response. :type: :class:`~oci.request.Request` """ self.next_page = None """ The value of the `opc-next-page` response header. :type: str """ self.request_id = None """ The ID of the request that generated this response. :type: str""" if self.headers is not None: self.next_page = self.headers.get(HEADER_NEXT_PAGE) self.request_id = self.headers.get(HEADER_REQUEST_ID) @property def has_next_page(self): """ Gets a value representing whether or not there is a next page of results in a list Response. :rtype: bool """ return self.next_page is not None