@@ -1856,7 +1856,7 @@ Name | Type | Description | Notes
18561856***
18571857
18581858# ** get_all_bundles_for_media_root**
1859- > list[ MediaFileBundle] get_all_bundles_for_media_root(root, asset=asset, ordering=ordering, limit=limit, offset=offset)
1859+ > list[ MediaFileBundle] get_all_bundles_for_media_root(root, asset=asset, location=location, ordering=ordering, limit=limit, offset=offset)
18601860
18611861
18621862
@@ -1884,12 +1884,13 @@ with elements_sdk.ApiClient(configuration) as api_client:
18841884 api_instance = elements_sdk.MediaLibraryApi(api_client)
18851885 root = ' root_example' # str |
18861886asset = ' asset_example' # str | Filter the returned list by `asset`. (optional)
1887+ location = ' location_example' # str | Filter the returned list by `location`. (optional)
18871888ordering = ' ordering_example' # str | Which field to use when ordering the results. (optional)
18881889limit = 56 # int | Number of results to return per page. (optional)
18891890offset = 56 # int | The initial index from which to return the results. (optional)
18901891
18911892 try :
1892- api_response = api_instance.get_all_bundles_for_media_root(root, asset = asset, ordering = ordering, limit = limit, offset = offset)
1893+ api_response = api_instance.get_all_bundles_for_media_root(root, asset = asset, location = location, ordering = ordering, limit = limit, offset = offset)
18931894 pprint(api_response)
18941895 except ApiException as e:
18951896 print (" Exception when calling MediaLibraryApi->get_all_bundles_for_media_root: %s \n " % e)
@@ -1902,6 +1903,7 @@ Name | Type | Description | Notes
19021903------------- | ------------- | ------------- | -------------
19031904 ** root** | ** str** | |
19041905 ** asset** | ** str** | Filter the returned list by ` ; asset` ; . | [ optional]
1906+ ** location** | ** str** | Filter the returned list by ` ; location` ; . | [ optional]
19051907 ** ordering** | ** str** | Which field to use when ordering the results. | [ optional]
19061908 ** limit** | ** int** | Number of results to return per page. | [ optional]
19071909 ** offset** | ** int** | The initial index from which to return the results. | [ optional]
@@ -2154,7 +2156,7 @@ Name | Type | Description | Notes
21542156***
21552157
21562158# ** get_all_media_file_bundles**
2157- > list[ MediaFileBundle] get_all_media_file_bundles(asset=asset, ordering=ordering, limit=limit, offset=offset)
2159+ > list[ MediaFileBundle] get_all_media_file_bundles(asset=asset, location=location, ordering=ordering, limit=limit, offset=offset)
21582160
21592161
21602162
@@ -2181,12 +2183,13 @@ with elements_sdk.ApiClient(configuration) as api_client:
21812183 # Create an instance of the API class
21822184 api_instance = elements_sdk.MediaLibraryApi(api_client)
21832185 asset = ' asset_example' # str | Filter the returned list by `asset`. (optional)
2186+ location = ' location_example' # str | Filter the returned list by `location`. (optional)
21842187ordering = ' ordering_example' # str | Which field to use when ordering the results. (optional)
21852188limit = 56 # int | Number of results to return per page. (optional)
21862189offset = 56 # int | The initial index from which to return the results. (optional)
21872190
21882191 try :
2189- api_response = api_instance.get_all_media_file_bundles(asset = asset, ordering = ordering, limit = limit, offset = offset)
2192+ api_response = api_instance.get_all_media_file_bundles(asset = asset, location = location, ordering = ordering, limit = limit, offset = offset)
21902193 pprint(api_response)
21912194 except ApiException as e:
21922195 print (" Exception when calling MediaLibraryApi->get_all_media_file_bundles: %s \n " % e)
@@ -2198,6 +2201,7 @@ offset = 56 # int | The initial index from which to return the results. (optiona
21982201Name | Type | Description | Notes
21992202------------- | ------------- | ------------- | -------------
22002203 ** asset** | ** str** | Filter the returned list by ` ; asset` ; . | [ optional]
2204+ ** location** | ** str** | Filter the returned list by ` ; location` ; . | [ optional]
22012205 ** ordering** | ** str** | Which field to use when ordering the results. | [ optional]
22022206 ** limit** | ** int** | Number of results to return per page. | [ optional]
22032207 ** offset** | ** int** | The initial index from which to return the results. | [ optional]
0 commit comments