@@ -1488,6 +1488,103 @@ def describe_backups_with_http_info(self, body, **kwargs): # noqa: E501
14881488 _request_timeout = params .get ('_request_timeout' ),
14891489 collection_formats = collection_formats )
14901490
1491+ def describe_big_keys (self , body , ** kwargs ): # noqa: E501
1492+ """describe_big_keys # noqa: E501
1493+
1494+ This method makes a synchronous HTTP request by default. To make an
1495+ asynchronous HTTP request, please pass async_req=True
1496+ >>> thread = api.describe_big_keys(body, async_req=True)
1497+ >>> result = thread.get()
1498+
1499+ :param async_req bool
1500+ :param DescribeBigKeysRequest body: (required)
1501+ :return: DescribeBigKeysResponse
1502+ If the method is called asynchronously,
1503+ returns the request thread.
1504+ """
1505+ kwargs ['_return_http_data_only' ] = True
1506+ if kwargs .get ('async_req' ):
1507+ return self .describe_big_keys_with_http_info (body , ** kwargs ) # noqa: E501
1508+ else :
1509+ (data ) = self .describe_big_keys_with_http_info (body , ** kwargs ) # noqa: E501
1510+ return data
1511+
1512+ def describe_big_keys_with_http_info (self , body , ** kwargs ): # noqa: E501
1513+ """describe_big_keys # noqa: E501
1514+
1515+ This method makes a synchronous HTTP request by default. To make an
1516+ asynchronous HTTP request, please pass async_req=True
1517+ >>> thread = api.describe_big_keys_with_http_info(body, async_req=True)
1518+ >>> result = thread.get()
1519+
1520+ :param async_req bool
1521+ :param DescribeBigKeysRequest body: (required)
1522+ :return: DescribeBigKeysResponse
1523+ If the method is called asynchronously,
1524+ returns the request thread.
1525+ """
1526+
1527+ all_params = ['body' ] # noqa: E501
1528+ all_params .append ('async_req' )
1529+ all_params .append ('_return_http_data_only' )
1530+ all_params .append ('_preload_content' )
1531+ all_params .append ('_request_timeout' )
1532+
1533+ params = locals ()
1534+ for key , val in six .iteritems (params ['kwargs' ]):
1535+ if key not in all_params :
1536+ raise TypeError (
1537+ "Got an unexpected keyword argument '%s'"
1538+ " to method describe_big_keys" % key
1539+ )
1540+ params [key ] = val
1541+ del params ['kwargs' ]
1542+ # verify the required parameter 'body' is set
1543+ if self .api_client .client_side_validation and ('body' not in params or
1544+ params ['body' ] is None ): # noqa: E501
1545+ raise ValueError ("Missing the required parameter `body` when calling `describe_big_keys`" ) # noqa: E501
1546+
1547+ collection_formats = {}
1548+
1549+ path_params = {}
1550+
1551+ query_params = []
1552+
1553+ header_params = {}
1554+
1555+ form_params = []
1556+ local_var_files = {}
1557+
1558+ body_params = None
1559+ if 'body' in params :
1560+ body_params = params ['body' ]
1561+ # HTTP header `Accept`
1562+ header_params ['Accept' ] = self .api_client .select_header_accept (
1563+ ['application/json' ]) # noqa: E501
1564+
1565+ # HTTP header `Content-Type`
1566+ header_params ['Content-Type' ] = self .api_client .select_header_content_type ( # noqa: E501
1567+ ['application/json' ]) # noqa: E501
1568+
1569+ # Authentication setting
1570+ auth_settings = ['volcengineSign' ] # noqa: E501
1571+
1572+ return self .api_client .call_api (
1573+ '/DescribeBigKeys/2020-12-07/redis/post/' , 'POST' ,
1574+ path_params ,
1575+ query_params ,
1576+ header_params ,
1577+ body = body_params ,
1578+ post_params = form_params ,
1579+ files = local_var_files ,
1580+ response_type = 'DescribeBigKeysResponse' , # noqa: E501
1581+ auth_settings = auth_settings ,
1582+ async_req = params .get ('async_req' ),
1583+ _return_http_data_only = params .get ('_return_http_data_only' ),
1584+ _preload_content = params .get ('_preload_content' , True ),
1585+ _request_timeout = params .get ('_request_timeout' ),
1586+ collection_formats = collection_formats )
1587+
14911588 def describe_db_instance_detail (self , body , ** kwargs ): # noqa: E501
14921589 """describe_db_instance_detail # noqa: E501
14931590
0 commit comments