@@ -390,6 +390,11 @@ def __init__(self, api_client=None):
390390 "attribute" : "filter[created_at][end]" ,
391391 "location" : "query" ,
392392 },
393+ "filter_owned_by" : {
394+ "openapi_types" : (str ,),
395+ "attribute" : "filter[owned_by]" ,
396+ "location" : "query" ,
397+ },
393398 "include" : {
394399 "openapi_types" : (str ,),
395400 "attribute" : "include" ,
@@ -928,6 +933,7 @@ def list_application_keys(
928933 filter : Union [str , UnsetType ] = unset ,
929934 filter_created_at_start : Union [str , UnsetType ] = unset ,
930935 filter_created_at_end : Union [str , UnsetType ] = unset ,
936+ filter_owned_by : Union [str , UnsetType ] = unset ,
931937 include : Union [str , UnsetType ] = unset ,
932938 ) -> ListApplicationKeysResponse :
933939 """Get all application keys.
@@ -948,6 +954,8 @@ def list_application_keys(
948954 :type filter_created_at_start: str, optional
949955 :param filter_created_at_end: Only include application keys created on or before the specified date.
950956 :type filter_created_at_end: str, optional
957+ :param filter_owned_by: Filter application keys by owner ID.
958+ :type filter_owned_by: str, optional
951959 :param include: Resource path for related resources to include in the response. Only ``owned_by`` is supported.
952960 :type include: str, optional
953961 :rtype: ListApplicationKeysResponse
@@ -971,6 +979,9 @@ def list_application_keys(
971979 if filter_created_at_end is not unset :
972980 kwargs ["filter_created_at_end" ] = filter_created_at_end
973981
982+ if filter_owned_by is not unset :
983+ kwargs ["filter_owned_by" ] = filter_owned_by
984+
974985 if include is not unset :
975986 kwargs ["include" ] = include
976987
0 commit comments