diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 2c83151..a90de7d 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -515,27 +515,4 @@ setup.cfg setup.py test-requirements.txt test/__init__.py -test/test_argument_type.py -test/test_create_path_quota_request.py -test/test_elements_version.py -test/test_email_preview.py -test/test_file_delete_endpoint_request.py -test/test_generate_proxies_request.py -test/test_global_alert.py -test/test_impersonation_endpoint_request.py -test/test_inline_response2001.py -test/test_inline_response2002.py -test/test_kapacitor_alert.py -test/test_media_library_delete_request.py -test/test_move_workspace_request.py -test/test_ntp_server.py -test/test_ntp_server_partial_update.py -test/test_password_reset_endpoint_request.py -test/test_queue.py -test/test_rename_custom_field_request.py -test/test_task_type.py -test/test_type_documentation.py -test/test_update_quota_request.py -test/test_workflow_transition_request.py -test/test_workflow_transition_response.py tox.ini diff --git a/docs/Asset.md b/docs/Asset.md index dcc3843..333c36e 100644 --- a/docs/Asset.md +++ b/docs/Asset.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **int** | | [optional] [readonly] -**urls** | [**Proxy**](Proxy.md) | | [optional] +**urls** | **dict(str, str)** | | [optional] [readonly] **proxies** | [**list[Proxy]**](Proxy.md) | | [optional] [readonly] **default_proxy** | [**Proxy**](Proxy.md) | | [optional] **info** | **dict(str, str)** | | [optional] [readonly] @@ -13,7 +13,7 @@ Name | Type | Description | Notes **custom_fields** | **dict(str, str)** | | **tags** | [**list[Tag]**](Tag.md) | | **resolved_permission** | [**MediaRootPermission**](MediaRootPermission.md) | | [optional] -**bundles** | **str** | | [optional] [readonly] +**bundles** | **list[dict(str, str)]** | | [optional] [readonly] **backups** | **str** | | [optional] [readonly] **proxies_generated** | **bool** | | [optional] [readonly] **proxies_failed** | **bool** | | [optional] [readonly] diff --git a/docs/AssetMini.md b/docs/AssetMini.md index c085025..f2f9568 100644 --- a/docs/AssetMini.md +++ b/docs/AssetMini.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **id** | **int** | | [optional] [readonly] **sync_id** | **str** | | [optional] [readonly] **default_proxy** | [**Proxy**](Proxy.md) | | [optional] -**urls** | [**Proxy**](Proxy.md) | | [optional] +**urls** | **dict(str, str)** | | [optional] [readonly] **type** | **str** | | [optional] [readonly] **display_name** | **str** | | [optional] [readonly] **info** | **str** | | [optional] [readonly] diff --git a/docs/AuthApi.md b/docs/AuthApi.md index 7e70104..a4ee17d 100644 --- a/docs/AuthApi.md +++ b/docs/AuthApi.md @@ -182,7 +182,7 @@ Name | Type | Description | Notes -### Required permissions * +### Required permissions * Authenticated user ### Example diff --git a/docs/AutomationApi.md b/docs/AutomationApi.md index 8418c51..1cdde36 100644 --- a/docs/AutomationApi.md +++ b/docs/AutomationApi.md @@ -1325,7 +1325,7 @@ Name | Type | Description | Notes -### Required permissions * +### Required permissions * User account permission: `tasks:manage` ### Example diff --git a/docs/License.md b/docs/License.md index ebb07ef..f1af40f 100644 --- a/docs/License.md +++ b/docs/License.md @@ -8,9 +8,12 @@ Name | Type | Description | Notes **product** | **str** | | **serial** | **str** | | **partner** | **str** | | +**hardware** | **str** | | [optional] +**hardware_key** | **str** | | [optional] **expiry** | **datetime** | | **components** | **dict(str, bool)** | | **components_expiry** | **dict(str, datetime)** | | +**components_enabled** | **dict(str, bool)** | | **rdc_slots** | **int** | | **users** | **int** | | **third_party_capacity** | **int** | | diff --git a/docs/MainApi.md b/docs/MainApi.md index 7ccef7e..f3ed3ce 100644 --- a/docs/MainApi.md +++ b/docs/MainApi.md @@ -112,7 +112,7 @@ Method | HTTP request | Description -### Required permissions * +### Required permissions * Authenticated user ### Example diff --git a/docs/MediaLibraryApi.md b/docs/MediaLibraryApi.md index 9ed0ebf..dca165c 100644 --- a/docs/MediaLibraryApi.md +++ b/docs/MediaLibraryApi.md @@ -1115,7 +1115,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. try: api_response = api_instance.delete_custom_field(id) @@ -1129,7 +1129,7 @@ with elements_sdk.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | ### Return type @@ -2326,7 +2326,7 @@ Name | Type | Description | Notes # **get_all_asset_tape_backups** - def get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset) -> list[AssetBackup] + def get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset, advanced_search=advanced_search) -> list[AssetBackup] @@ -2357,9 +2357,10 @@ ordering = 'ordering_example' # str | Which field to use when ordering the resul limit = 56 # int | Number of results to return per page. (optional) offset = 56 # int | The initial index from which to return the results. (optional) include_asset = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset) + api_response = api_instance.get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_asset_tape_backups: %s\n" % e) @@ -2375,6 +2376,7 @@ Name | Type | Description | Notes **limit** | **int**| Number of results to return per page. | [optional] **offset** | **int**| The initial index from which to return the results. | [optional] **include_asset** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -2586,7 +2588,7 @@ Name | Type | Description | Notes # **get_all_comments** - def get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) -> list[Comment] + def get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) -> list[Comment] @@ -2621,9 +2623,10 @@ offset = 56 # int | The initial index from which to return the results. (optiona for_root = 56 # int | (optional) tasks_for_user = 56 # int | (optional) include_full_asset = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) + api_response = api_instance.get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_comments: %s\n" % e) @@ -2643,6 +2646,7 @@ Name | Type | Description | Notes **for_root** | **int**| | [optional] **tasks_for_user** | **int**| | [optional] **include_full_asset** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -2834,7 +2838,7 @@ Name | Type | Description | Notes # **get_all_media_file_bundles** - def get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents) -> list[MediaFileBundle] + def get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, advanced_search=advanced_search) -> list[MediaFileBundle] @@ -2871,9 +2875,10 @@ exclude_deleted = True # bool | (optional) exclude_unrecognized = True # bool | (optional) include_proxies = True # bool | (optional) include_parents = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents) + api_response = api_instance.get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_media_file_bundles: %s\n" % e) @@ -2895,6 +2900,7 @@ Name | Type | Description | Notes **exclude_unrecognized** | **bool**| | [optional] **include_proxies** | **bool**| | [optional] **include_parents** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -2964,7 +2970,7 @@ Name | Type | Description | Notes # **get_all_media_files** - def get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) -> list[MediaFile] + def get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) -> list[MediaFile] @@ -3009,9 +3015,10 @@ include_modified_by = True # bool | (optional) include_effective_custom_fields = True # bool | (optional) include_root = True # bool | (optional) include_parents = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) + api_response = api_instance.get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_media_files: %s\n" % e) @@ -3041,6 +3048,7 @@ Name | Type | Description | Notes **include_effective_custom_fields** | **bool**| | [optional] **include_root** | **bool**| | [optional] **include_parents** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -3850,7 +3858,7 @@ Name | Type | Description | Notes # **get_comment** - def get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) -> Comment + def get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) -> Comment @@ -3880,9 +3888,10 @@ with elements_sdk.ApiClient(configuration) as api_client: for_root = 56 # int | (optional) tasks_for_user = 56 # int | (optional) include_full_asset = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) + api_response = api_instance.get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_comment: %s\n" % e) @@ -3897,6 +3906,7 @@ Name | Type | Description | Notes **for_root** | **int**| | [optional] **tasks_for_user** | **int**| | [optional] **include_full_asset** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -3935,7 +3945,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. try: api_response = api_instance.get_custom_field(id) @@ -3949,7 +3959,7 @@ with elements_sdk.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | ### Return type @@ -4292,7 +4302,7 @@ Name | Type | Description | Notes # **get_media_file** - def get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) -> MediaFile + def get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) -> MediaFile @@ -4324,9 +4334,10 @@ include_modified_by = True # bool | (optional) include_effective_custom_fields = True # bool | (optional) include_root = True # bool | (optional) include_parents = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) + api_response = api_instance.get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_media_file: %s\n" % e) @@ -4343,6 +4354,7 @@ Name | Type | Description | Notes **include_effective_custom_fields** | **bool**| | [optional] **include_root** | **bool**| | [optional] **include_parents** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -4355,7 +4367,7 @@ Name | Type | Description | Notes # **get_media_file_bundle** - def get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit) -> MediaFileBundle + def get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit, advanced_search=advanced_search) -> MediaFileBundle @@ -4388,9 +4400,10 @@ include_proxies = True # bool | (optional) include_parents = True # bool | (optional) offset = 56 # int | (optional) limit = 56 # int | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit) + api_response = api_instance.get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_media_file_bundle: %s\n" % e) @@ -4408,6 +4421,7 @@ Name | Type | Description | Notes **include_parents** | **bool**| | [optional] **offset** | **int**| | [optional] **limit** | **int**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -5593,7 +5607,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. data = elements_sdk.CustomFieldPartialUpdate() # CustomFieldPartialUpdate | try: @@ -5608,7 +5622,7 @@ data = elements_sdk.CustomFieldPartialUpdate() # CustomFieldPartialUpdate | Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | **data** | [**CustomFieldPartialUpdate**](CustomFieldPartialUpdate.md)| | ### Return type @@ -6143,7 +6157,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. data = elements_sdk.RenameCustomFieldRequest() # RenameCustomFieldRequest | try: @@ -6158,7 +6172,7 @@ data = elements_sdk.RenameCustomFieldRequest() # RenameCustomFieldRequest | Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | **data** | [**RenameCustomFieldRequest**](RenameCustomFieldRequest.md)| | ### Return type @@ -6789,7 +6803,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. data = elements_sdk.CustomField() # CustomField | try: @@ -6804,7 +6818,7 @@ data = elements_sdk.CustomField() # CustomField | Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | **data** | [**CustomField**](CustomField.md)| | ### Return type diff --git a/docs/TaskType.md b/docs/TaskType.md index 1f36088..ccd0834 100644 --- a/docs/TaskType.md +++ b/docs/TaskType.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **icon_class** | **str** | | **is_available** | **bool** | | [optional] [readonly] **allow_in_jobs** | **bool** | | +**new_since_version** | **str** | | [[Back to Model list]](../#documentation-for-models) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to README]](../) diff --git a/elements_sdk/api/auth_api.py b/elements_sdk/api/auth_api.py index aa1ab82..93b49d9 100644 --- a/elements_sdk/api/auth_api.py +++ b/elements_sdk/api/auth_api.py @@ -357,7 +357,7 @@ def delete_access_token_with_http_info(self, id, **kwargs): # noqa: E501 def generate_password(self, **kwargs): # noqa: E501 """generate_password # noqa: E501 - ### Required permissions * # noqa: E501 + ### Required permissions * Authenticated user # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.generate_password(async_req=True) @@ -381,7 +381,7 @@ def generate_password(self, **kwargs): # noqa: E501 def generate_password_with_http_info(self, **kwargs): # noqa: E501 """generate_password # noqa: E501 - ### Required permissions * # noqa: E501 + ### Required permissions * Authenticated user # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.generate_password_with_http_info(async_req=True) diff --git a/elements_sdk/api/automation_api.py b/elements_sdk/api/automation_api.py index 3555c70..ce6bf4d 100644 --- a/elements_sdk/api/automation_api.py +++ b/elements_sdk/api/automation_api.py @@ -2597,7 +2597,7 @@ def get_pending_tasks_with_http_info(self, **kwargs): # noqa: E501 def get_python_environments(self, **kwargs): # noqa: E501 """get_python_environments # noqa: E501 - ### Required permissions * # noqa: E501 + ### Required permissions * User account permission: `tasks:manage` # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_python_environments(async_req=True) @@ -2621,7 +2621,7 @@ def get_python_environments(self, **kwargs): # noqa: E501 def get_python_environments_with_http_info(self, **kwargs): # noqa: E501 """get_python_environments # noqa: E501 - ### Required permissions * # noqa: E501 + ### Required permissions * User account permission: `tasks:manage` # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.get_python_environments_with_http_info(async_req=True) diff --git a/elements_sdk/api/main_api.py b/elements_sdk/api/main_api.py index 4af1107..866f269 100644 --- a/elements_sdk/api/main_api.py +++ b/elements_sdk/api/main_api.py @@ -37,7 +37,7 @@ def __init__(self, api_client=None): def apply_configuration(self, **kwargs): # noqa: E501 """apply_configuration # noqa: E501 - ### Required permissions * # noqa: E501 + ### Required permissions * Authenticated user # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.apply_configuration(async_req=True) @@ -61,7 +61,7 @@ def apply_configuration(self, **kwargs): # noqa: E501 def apply_configuration_with_http_info(self, **kwargs): # noqa: E501 """apply_configuration # noqa: E501 - ### Required permissions * # noqa: E501 + ### Required permissions * Authenticated user # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True >>> thread = api.apply_configuration_with_http_info(async_req=True) diff --git a/elements_sdk/api/media_library_api.py b/elements_sdk/api/media_library_api.py index 0bed81a..7bca49c 100644 --- a/elements_sdk/api/media_library_api.py +++ b/elements_sdk/api/media_library_api.py @@ -2036,7 +2036,7 @@ def delete_custom_field(self, id, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -2061,7 +2061,7 @@ def delete_custom_field_with_http_info(self, id, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -4569,6 +4569,7 @@ def get_all_asset_tape_backups(self, **kwargs): # noqa: E501 :param int limit: Number of results to return per page. :param int offset: The initial index from which to return the results. :param bool include_asset: + :param object advanced_search: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -4598,6 +4599,7 @@ def get_all_asset_tape_backups_with_http_info(self, **kwargs): # noqa: E501 :param int limit: Number of results to return per page. :param int offset: The initial index from which to return the results. :param bool include_asset: + :param object advanced_search: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -4614,7 +4616,7 @@ def get_all_asset_tape_backups_with_http_info(self, **kwargs): # noqa: E501 local_var_params = locals() - all_params = ['asset', 'ordering', 'limit', 'offset', 'include_asset'] # noqa: E501 + all_params = ['asset', 'ordering', 'limit', 'offset', 'include_asset', 'advanced_search'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -4644,6 +4646,8 @@ def get_all_asset_tape_backups_with_http_info(self, **kwargs): # noqa: E501 query_params.append(('offset', local_var_params['offset'])) # noqa: E501 if 'include_asset' in local_var_params and local_var_params['include_asset'] is not None: # noqa: E501 query_params.append(('include_asset', local_var_params['include_asset'])) # noqa: E501 + if 'advanced_search' in local_var_params and local_var_params['advanced_search'] is not None: # noqa: E501 + query_params.append(('advanced_search', local_var_params['advanced_search'])) # noqa: E501 header_params = {} @@ -5089,6 +5093,7 @@ def get_all_comments(self, **kwargs): # noqa: E501 :param int for_root: :param int tasks_for_user: :param bool include_full_asset: + :param object advanced_search: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -5122,6 +5127,7 @@ def get_all_comments_with_http_info(self, **kwargs): # noqa: E501 :param int for_root: :param int tasks_for_user: :param bool include_full_asset: + :param object advanced_search: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -5138,7 +5144,7 @@ def get_all_comments_with_http_info(self, **kwargs): # noqa: E501 local_var_params = locals() - all_params = ['asset', 'root', 'user', 'ordering', 'limit', 'offset', 'for_root', 'tasks_for_user', 'include_full_asset'] # noqa: E501 + all_params = ['asset', 'root', 'user', 'ordering', 'limit', 'offset', 'for_root', 'tasks_for_user', 'include_full_asset', 'advanced_search'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5176,6 +5182,8 @@ def get_all_comments_with_http_info(self, **kwargs): # noqa: E501 query_params.append(('tasks_for_user', local_var_params['tasks_for_user'])) # noqa: E501 if 'include_full_asset' in local_var_params and local_var_params['include_full_asset'] is not None: # noqa: E501 query_params.append(('include_full_asset', local_var_params['include_full_asset'])) # noqa: E501 + if 'advanced_search' in local_var_params and local_var_params['advanced_search'] is not None: # noqa: E501 + query_params.append(('advanced_search', local_var_params['advanced_search'])) # noqa: E501 header_params = {} @@ -5579,6 +5587,7 @@ def get_all_media_file_bundles(self, **kwargs): # noqa: E501 :param bool exclude_unrecognized: :param bool include_proxies: :param bool include_parents: + :param object advanced_search: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -5614,6 +5623,7 @@ def get_all_media_file_bundles_with_http_info(self, **kwargs): # noqa: E501 :param bool exclude_unrecognized: :param bool include_proxies: :param bool include_parents: + :param object advanced_search: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -5630,7 +5640,7 @@ def get_all_media_file_bundles_with_http_info(self, **kwargs): # noqa: E501 local_var_params = locals() - all_params = ['asset', 'location', 'shared_via_tokens', 'shared_via_tokens__token', 'ordering', 'limit', 'offset', 'exclude_deleted', 'exclude_unrecognized', 'include_proxies', 'include_parents'] # noqa: E501 + all_params = ['asset', 'location', 'shared_via_tokens', 'shared_via_tokens__token', 'ordering', 'limit', 'offset', 'exclude_deleted', 'exclude_unrecognized', 'include_proxies', 'include_parents', 'advanced_search'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5672,6 +5682,8 @@ def get_all_media_file_bundles_with_http_info(self, **kwargs): # noqa: E501 query_params.append(('include_proxies', local_var_params['include_proxies'])) # noqa: E501 if 'include_parents' in local_var_params and local_var_params['include_parents'] is not None: # noqa: E501 query_params.append(('include_parents', local_var_params['include_parents'])) # noqa: E501 + if 'advanced_search' in local_var_params and local_var_params['advanced_search'] is not None: # noqa: E501 + query_params.append(('advanced_search', local_var_params['advanced_search'])) # noqa: E501 header_params = {} @@ -5843,6 +5855,7 @@ def get_all_media_files(self, **kwargs): # noqa: E501 :param bool include_effective_custom_fields: :param bool include_root: :param bool include_parents: + :param object advanced_search: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -5886,6 +5899,7 @@ def get_all_media_files_with_http_info(self, **kwargs): # noqa: E501 :param bool include_effective_custom_fields: :param bool include_root: :param bool include_parents: + :param object advanced_search: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -5902,7 +5916,7 @@ def get_all_media_files_with_http_info(self, **kwargs): # noqa: E501 local_var_params = locals() - all_params = ['bundle', 'bundle__in', 'parent', 'path', 'name', 'is_dir', 'is_showroom', 'present', 'volume', 'shared_via_tokens', 'shared_via_tokens__token', 'ordering', 'limit', 'offset', 'resolve_file_permission', 'include_modified_by', 'include_effective_custom_fields', 'include_root', 'include_parents'] # noqa: E501 + all_params = ['bundle', 'bundle__in', 'parent', 'path', 'name', 'is_dir', 'is_showroom', 'present', 'volume', 'shared_via_tokens', 'shared_via_tokens__token', 'ordering', 'limit', 'offset', 'resolve_file_permission', 'include_modified_by', 'include_effective_custom_fields', 'include_root', 'include_parents', 'advanced_search'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -5960,6 +5974,8 @@ def get_all_media_files_with_http_info(self, **kwargs): # noqa: E501 query_params.append(('include_root', local_var_params['include_root'])) # noqa: E501 if 'include_parents' in local_var_params and local_var_params['include_parents'] is not None: # noqa: E501 query_params.append(('include_parents', local_var_params['include_parents'])) # noqa: E501 + if 'advanced_search' in local_var_params and local_var_params['advanced_search'] is not None: # noqa: E501 + query_params.append(('advanced_search', local_var_params['advanced_search'])) # noqa: E501 header_params = {} @@ -7592,6 +7608,7 @@ def get_comment(self, id, **kwargs): # noqa: E501 :param int for_root: :param int tasks_for_user: :param bool include_full_asset: + :param object advanced_search: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -7620,6 +7637,7 @@ def get_comment_with_http_info(self, id, **kwargs): # noqa: E501 :param int for_root: :param int tasks_for_user: :param bool include_full_asset: + :param object advanced_search: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -7636,7 +7654,7 @@ def get_comment_with_http_info(self, id, **kwargs): # noqa: E501 local_var_params = locals() - all_params = ['id', 'for_root', 'tasks_for_user', 'include_full_asset'] # noqa: E501 + all_params = ['id', 'for_root', 'tasks_for_user', 'include_full_asset', 'advanced_search'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -7668,6 +7686,8 @@ def get_comment_with_http_info(self, id, **kwargs): # noqa: E501 query_params.append(('tasks_for_user', local_var_params['tasks_for_user'])) # noqa: E501 if 'include_full_asset' in local_var_params and local_var_params['include_full_asset'] is not None: # noqa: E501 query_params.append(('include_full_asset', local_var_params['include_full_asset'])) # noqa: E501 + if 'advanced_search' in local_var_params and local_var_params['advanced_search'] is not None: # noqa: E501 + query_params.append(('advanced_search', local_var_params['advanced_search'])) # noqa: E501 header_params = {} @@ -7708,7 +7728,7 @@ def get_custom_field(self, id, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -7733,7 +7753,7 @@ def get_custom_field_with_http_info(self, id, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -8494,6 +8514,7 @@ def get_media_file(self, id, **kwargs): # noqa: E501 :param bool include_effective_custom_fields: :param bool include_root: :param bool include_parents: + :param object advanced_search: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -8524,6 +8545,7 @@ def get_media_file_with_http_info(self, id, **kwargs): # noqa: E501 :param bool include_effective_custom_fields: :param bool include_root: :param bool include_parents: + :param object advanced_search: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -8540,7 +8562,7 @@ def get_media_file_with_http_info(self, id, **kwargs): # noqa: E501 local_var_params = locals() - all_params = ['id', 'resolve_file_permission', 'include_modified_by', 'include_effective_custom_fields', 'include_root', 'include_parents'] # noqa: E501 + all_params = ['id', 'resolve_file_permission', 'include_modified_by', 'include_effective_custom_fields', 'include_root', 'include_parents', 'advanced_search'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -8576,6 +8598,8 @@ def get_media_file_with_http_info(self, id, **kwargs): # noqa: E501 query_params.append(('include_root', local_var_params['include_root'])) # noqa: E501 if 'include_parents' in local_var_params and local_var_params['include_parents'] is not None: # noqa: E501 query_params.append(('include_parents', local_var_params['include_parents'])) # noqa: E501 + if 'advanced_search' in local_var_params and local_var_params['advanced_search'] is not None: # noqa: E501 + query_params.append(('advanced_search', local_var_params['advanced_search'])) # noqa: E501 header_params = {} @@ -8623,6 +8647,7 @@ def get_media_file_bundle(self, id, **kwargs): # noqa: E501 :param bool include_parents: :param int offset: :param int limit: + :param object advanced_search: :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response data. Default is True. @@ -8654,6 +8679,7 @@ def get_media_file_bundle_with_http_info(self, id, **kwargs): # noqa: E501 :param bool include_parents: :param int offset: :param int limit: + :param object advanced_search: :param _return_http_data_only: response data without head status code and headers :param _preload_content: if False, the urllib3.HTTPResponse object will @@ -8670,7 +8696,7 @@ def get_media_file_bundle_with_http_info(self, id, **kwargs): # noqa: E501 local_var_params = locals() - all_params = ['id', 'exclude_deleted', 'exclude_unrecognized', 'include_proxies', 'include_parents', 'offset', 'limit'] # noqa: E501 + all_params = ['id', 'exclude_deleted', 'exclude_unrecognized', 'include_proxies', 'include_parents', 'offset', 'limit', 'advanced_search'] # noqa: E501 all_params.append('async_req') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -8708,6 +8734,8 @@ def get_media_file_bundle_with_http_info(self, id, **kwargs): # noqa: E501 query_params.append(('offset', local_var_params['offset'])) # noqa: E501 if 'limit' in local_var_params and local_var_params['limit'] is not None: # noqa: E501 query_params.append(('limit', local_var_params['limit'])) # noqa: E501 + if 'advanced_search' in local_var_params and local_var_params['advanced_search'] is not None: # noqa: E501 + query_params.append(('advanced_search', local_var_params['advanced_search'])) # noqa: E501 header_params = {} @@ -11112,7 +11140,7 @@ def patch_custom_field(self, id, data, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param CustomFieldPartialUpdate data: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response @@ -11138,7 +11166,7 @@ def patch_custom_field_with_http_info(self, id, data, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param CustomFieldPartialUpdate data: (required) :param _return_http_data_only: response data without head status code and headers @@ -12312,7 +12340,7 @@ def rename_custom_field(self, id, data, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param RenameCustomFieldRequest data: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response @@ -12338,7 +12366,7 @@ def rename_custom_field_with_http_info(self, id, data, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param RenameCustomFieldRequest data: (required) :param _return_http_data_only: response data without head status code and headers @@ -13684,7 +13712,7 @@ def update_custom_field(self, id, data, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param CustomField data: (required) :param _preload_content: if False, the urllib3.HTTPResponse object will be returned without reading/decoding response @@ -13710,7 +13738,7 @@ def update_custom_field_with_http_info(self, id, data, **kwargs): # noqa: E501 >>> result = thread.get() :param async_req bool: execute request asynchronously - :param int id: A unique integer value identifying this CustomField. (required) + :param int id: A unique integer value identifying this Custom field. (required) :param CustomField data: (required) :param _return_http_data_only: response data without head status code and headers diff --git a/elements_sdk/models/asset.py b/elements_sdk/models/asset.py index 4d226ff..8895b8b 100644 --- a/elements_sdk/models/asset.py +++ b/elements_sdk/models/asset.py @@ -32,7 +32,7 @@ class Asset(object): """ openapi_types = { 'id': 'int', - 'urls': 'Proxy', + 'urls': 'dict(str, str)', 'proxies': 'list[Proxy]', 'default_proxy': 'Proxy', 'info': 'dict(str, str)', @@ -40,7 +40,7 @@ class Asset(object): 'custom_fields': 'dict(str, str)', 'tags': 'list[Tag]', 'resolved_permission': 'MediaRootPermission', - 'bundles': 'str', + 'bundles': 'list[dict(str, str)]', 'backups': 'str', 'proxies_generated': 'bool', 'proxies_failed': 'bool', @@ -214,7 +214,7 @@ def urls(self): :return: The urls of this Asset. # noqa: E501 - :rtype: Proxy + :rtype: dict(str, str) """ return self._urls @@ -224,7 +224,7 @@ def urls(self, urls): :param urls: The urls of this Asset. # noqa: E501 - :type: Proxy + :type: dict(str, str) """ self._urls = urls @@ -386,7 +386,7 @@ def bundles(self): :return: The bundles of this Asset. # noqa: E501 - :rtype: str + :rtype: list[dict(str, str)] """ return self._bundles @@ -396,7 +396,7 @@ def bundles(self, bundles): :param bundles: The bundles of this Asset. # noqa: E501 - :type: str + :type: list[dict(str, str)] """ self._bundles = bundles diff --git a/elements_sdk/models/asset_mini.py b/elements_sdk/models/asset_mini.py index a6fd7fb..269c430 100644 --- a/elements_sdk/models/asset_mini.py +++ b/elements_sdk/models/asset_mini.py @@ -34,7 +34,7 @@ class AssetMini(object): 'id': 'int', 'sync_id': 'str', 'default_proxy': 'Proxy', - 'urls': 'Proxy', + 'urls': 'dict(str, str)', 'type': 'str', 'display_name': 'str', 'info': 'str', @@ -154,7 +154,7 @@ def urls(self): :return: The urls of this AssetMini. # noqa: E501 - :rtype: Proxy + :rtype: dict(str, str) """ return self._urls @@ -164,7 +164,7 @@ def urls(self, urls): :param urls: The urls of this AssetMini. # noqa: E501 - :type: Proxy + :type: dict(str, str) """ self._urls = urls diff --git a/elements_sdk/models/license.py b/elements_sdk/models/license.py index 80c93a2..b5e3749 100644 --- a/elements_sdk/models/license.py +++ b/elements_sdk/models/license.py @@ -35,9 +35,12 @@ class License(object): 'product': 'str', 'serial': 'str', 'partner': 'str', + 'hardware': 'str', + 'hardware_key': 'str', 'expiry': 'datetime', 'components': 'dict(str, bool)', 'components_expiry': 'dict(str, datetime)', + 'components_enabled': 'dict(str, bool)', 'rdc_slots': 'int', 'users': 'int', 'third_party_capacity': 'int' @@ -48,15 +51,18 @@ class License(object): 'product': 'product', 'serial': 'serial', 'partner': 'partner', + 'hardware': 'hardware', + 'hardware_key': 'hardware_key', 'expiry': 'expiry', 'components': 'components', 'components_expiry': 'components_expiry', + 'components_enabled': 'components_enabled', 'rdc_slots': 'rdc_slots', 'users': 'users', 'third_party_capacity': 'third_party_capacity' } - def __init__(self, name=None, product=None, serial=None, partner=None, expiry=None, components=None, components_expiry=None, rdc_slots=None, users=None, third_party_capacity=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, name=None, product=None, serial=None, partner=None, hardware=None, hardware_key=None, expiry=None, components=None, components_expiry=None, components_enabled=None, rdc_slots=None, users=None, third_party_capacity=None, local_vars_configuration=None): # noqa: E501 """License - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() @@ -66,9 +72,12 @@ def __init__(self, name=None, product=None, serial=None, partner=None, expiry=No self._product = None self._serial = None self._partner = None + self._hardware = None + self._hardware_key = None self._expiry = None self._components = None self._components_expiry = None + self._components_enabled = None self._rdc_slots = None self._users = None self._third_party_capacity = None @@ -78,9 +87,14 @@ def __init__(self, name=None, product=None, serial=None, partner=None, expiry=No self.product = product self.serial = serial self.partner = partner + if hardware is not None: + self.hardware = hardware + if hardware_key is not None: + self.hardware_key = hardware_key self.expiry = expiry self.components = components self.components_expiry = components_expiry + self.components_enabled = components_enabled self.rdc_slots = rdc_slots self.users = users self.third_party_capacity = third_party_capacity @@ -185,6 +199,54 @@ def partner(self, partner): self._partner = partner + @property + def hardware(self): + """Gets the hardware of this License. # noqa: E501 + + + :return: The hardware of this License. # noqa: E501 + :rtype: str + """ + return self._hardware + + @hardware.setter + def hardware(self, hardware): + """Sets the hardware of this License. + + + :param hardware: The hardware of this License. # noqa: E501 + :type: str + """ + if (self.local_vars_configuration.client_side_validation and + hardware is not None and len(hardware) < 1): + raise ValueError("Invalid value for `hardware`, length must be greater than or equal to `1`") # noqa: E501 + + self._hardware = hardware + + @property + def hardware_key(self): + """Gets the hardware_key of this License. # noqa: E501 + + + :return: The hardware_key of this License. # noqa: E501 + :rtype: str + """ + return self._hardware_key + + @hardware_key.setter + def hardware_key(self, hardware_key): + """Sets the hardware_key of this License. + + + :param hardware_key: The hardware_key of this License. # noqa: E501 + :type: str + """ + if (self.local_vars_configuration.client_side_validation and + hardware_key is not None and len(hardware_key) < 1): + raise ValueError("Invalid value for `hardware_key`, length must be greater than or equal to `1`") # noqa: E501 + + self._hardware_key = hardware_key + @property def expiry(self): """Gets the expiry of this License. # noqa: E501 @@ -252,6 +314,29 @@ def components_expiry(self, components_expiry): self._components_expiry = components_expiry + @property + def components_enabled(self): + """Gets the components_enabled of this License. # noqa: E501 + + + :return: The components_enabled of this License. # noqa: E501 + :rtype: dict(str, bool) + """ + return self._components_enabled + + @components_enabled.setter + def components_enabled(self, components_enabled): + """Sets the components_enabled of this License. + + + :param components_enabled: The components_enabled of this License. # noqa: E501 + :type: dict(str, bool) + """ + if self.local_vars_configuration.client_side_validation and components_enabled is None: # noqa: E501 + raise ValueError("Invalid value for `components_enabled`, must not be `None`") # noqa: E501 + + self._components_enabled = components_enabled + @property def rdc_slots(self): """Gets the rdc_slots of this License. # noqa: E501 diff --git a/elements_sdk/models/task_type.py b/elements_sdk/models/task_type.py index 9d424bd..114439b 100644 --- a/elements_sdk/models/task_type.py +++ b/elements_sdk/models/task_type.py @@ -45,7 +45,8 @@ class TaskType(object): 'superuser_only': 'bool', 'icon_class': 'str', 'is_available': 'bool', - 'allow_in_jobs': 'bool' + 'allow_in_jobs': 'bool', + 'new_since_version': 'str' } attribute_map = { @@ -63,10 +64,11 @@ class TaskType(object): 'superuser_only': 'superuser_only', 'icon_class': 'icon_class', 'is_available': 'is_available', - 'allow_in_jobs': 'allow_in_jobs' + 'allow_in_jobs': 'allow_in_jobs', + 'new_since_version': 'new_since_version' } - def __init__(self, type=None, display_name=None, display_group=None, input_type=None, abortable=None, arg_template=None, arg_types=None, required_args=None, output_names=None, output_types=None, parameters_editor_component=None, superuser_only=None, icon_class=None, is_available=None, allow_in_jobs=None, local_vars_configuration=None): # noqa: E501 + def __init__(self, type=None, display_name=None, display_group=None, input_type=None, abortable=None, arg_template=None, arg_types=None, required_args=None, output_names=None, output_types=None, parameters_editor_component=None, superuser_only=None, icon_class=None, is_available=None, allow_in_jobs=None, new_since_version=None, local_vars_configuration=None): # noqa: E501 """TaskType - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() @@ -87,6 +89,7 @@ def __init__(self, type=None, display_name=None, display_group=None, input_type= self._icon_class = None self._is_available = None self._allow_in_jobs = None + self._new_since_version = None self.discriminator = None self.type = type @@ -107,6 +110,7 @@ def __init__(self, type=None, display_name=None, display_group=None, input_type= if is_available is not None: self.is_available = is_available self.allow_in_jobs = allow_in_jobs + self.new_since_version = new_since_version @property def type(self): @@ -204,8 +208,6 @@ def input_type(self, input_type): :param input_type: The input_type of this TaskType. # noqa: E501 :type: str """ - if self.local_vars_configuration.client_side_validation and input_type is None: # noqa: E501 - raise ValueError("Invalid value for `input_type`, must not be `None`") # noqa: E501 if (self.local_vars_configuration.client_side_validation and input_type is not None and len(input_type) < 1): raise ValueError("Invalid value for `input_type`, length must be greater than or equal to `1`") # noqa: E501 @@ -253,8 +255,6 @@ def arg_template(self, arg_template): :param arg_template: The arg_template of this TaskType. # noqa: E501 :type: dict(str, str) """ - if self.local_vars_configuration.client_side_validation and arg_template is None: # noqa: E501 - raise ValueError("Invalid value for `arg_template`, must not be `None`") # noqa: E501 self._arg_template = arg_template @@ -364,8 +364,6 @@ def parameters_editor_component(self, parameters_editor_component): :param parameters_editor_component: The parameters_editor_component of this TaskType. # noqa: E501 :type: str """ - if self.local_vars_configuration.client_side_validation and parameters_editor_component is None: # noqa: E501 - raise ValueError("Invalid value for `parameters_editor_component`, must not be `None`") # noqa: E501 if (self.local_vars_configuration.client_side_validation and parameters_editor_component is not None and len(parameters_editor_component) < 1): raise ValueError("Invalid value for `parameters_editor_component`, length must be greater than or equal to `1`") # noqa: E501 @@ -413,8 +411,6 @@ def icon_class(self, icon_class): :param icon_class: The icon_class of this TaskType. # noqa: E501 :type: str """ - if self.local_vars_configuration.client_side_validation and icon_class is None: # noqa: E501 - raise ValueError("Invalid value for `icon_class`, must not be `None`") # noqa: E501 if (self.local_vars_configuration.client_side_validation and icon_class is not None and len(icon_class) < 1): raise ValueError("Invalid value for `icon_class`, length must be greater than or equal to `1`") # noqa: E501 @@ -465,6 +461,30 @@ def allow_in_jobs(self, allow_in_jobs): self._allow_in_jobs = allow_in_jobs + @property + def new_since_version(self): + """Gets the new_since_version of this TaskType. # noqa: E501 + + + :return: The new_since_version of this TaskType. # noqa: E501 + :rtype: str + """ + return self._new_since_version + + @new_since_version.setter + def new_since_version(self, new_since_version): + """Sets the new_since_version of this TaskType. + + + :param new_since_version: The new_since_version of this TaskType. # noqa: E501 + :type: str + """ + if (self.local_vars_configuration.client_side_validation and + new_since_version is not None and len(new_since_version) < 1): + raise ValueError("Invalid value for `new_since_version`, length must be greater than or equal to `1`") # noqa: E501 + + self._new_since_version = new_since_version + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/versions/3.3.0/docs/Asset.md b/versions/3.3.0/docs/Asset.md index dcc3843..333c36e 100644 --- a/versions/3.3.0/docs/Asset.md +++ b/versions/3.3.0/docs/Asset.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **int** | | [optional] [readonly] -**urls** | [**Proxy**](Proxy.md) | | [optional] +**urls** | **dict(str, str)** | | [optional] [readonly] **proxies** | [**list[Proxy]**](Proxy.md) | | [optional] [readonly] **default_proxy** | [**Proxy**](Proxy.md) | | [optional] **info** | **dict(str, str)** | | [optional] [readonly] @@ -13,7 +13,7 @@ Name | Type | Description | Notes **custom_fields** | **dict(str, str)** | | **tags** | [**list[Tag]**](Tag.md) | | **resolved_permission** | [**MediaRootPermission**](MediaRootPermission.md) | | [optional] -**bundles** | **str** | | [optional] [readonly] +**bundles** | **list[dict(str, str)]** | | [optional] [readonly] **backups** | **str** | | [optional] [readonly] **proxies_generated** | **bool** | | [optional] [readonly] **proxies_failed** | **bool** | | [optional] [readonly] diff --git a/versions/3.3.0/docs/AssetMini.md b/versions/3.3.0/docs/AssetMini.md index c085025..f2f9568 100644 --- a/versions/3.3.0/docs/AssetMini.md +++ b/versions/3.3.0/docs/AssetMini.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **id** | **int** | | [optional] [readonly] **sync_id** | **str** | | [optional] [readonly] **default_proxy** | [**Proxy**](Proxy.md) | | [optional] -**urls** | [**Proxy**](Proxy.md) | | [optional] +**urls** | **dict(str, str)** | | [optional] [readonly] **type** | **str** | | [optional] [readonly] **display_name** | **str** | | [optional] [readonly] **info** | **str** | | [optional] [readonly] diff --git a/versions/3.3.0/docs/AuthApi.md b/versions/3.3.0/docs/AuthApi.md index 7e70104..a4ee17d 100644 --- a/versions/3.3.0/docs/AuthApi.md +++ b/versions/3.3.0/docs/AuthApi.md @@ -182,7 +182,7 @@ Name | Type | Description | Notes -### Required permissions * +### Required permissions * Authenticated user ### Example diff --git a/versions/3.3.0/docs/AutomationApi.md b/versions/3.3.0/docs/AutomationApi.md index 8418c51..1cdde36 100644 --- a/versions/3.3.0/docs/AutomationApi.md +++ b/versions/3.3.0/docs/AutomationApi.md @@ -1325,7 +1325,7 @@ Name | Type | Description | Notes -### Required permissions * +### Required permissions * User account permission: `tasks:manage` ### Example diff --git a/versions/3.3.0/docs/License.md b/versions/3.3.0/docs/License.md index ebb07ef..f1af40f 100644 --- a/versions/3.3.0/docs/License.md +++ b/versions/3.3.0/docs/License.md @@ -8,9 +8,12 @@ Name | Type | Description | Notes **product** | **str** | | **serial** | **str** | | **partner** | **str** | | +**hardware** | **str** | | [optional] +**hardware_key** | **str** | | [optional] **expiry** | **datetime** | | **components** | **dict(str, bool)** | | **components_expiry** | **dict(str, datetime)** | | +**components_enabled** | **dict(str, bool)** | | **rdc_slots** | **int** | | **users** | **int** | | **third_party_capacity** | **int** | | diff --git a/versions/3.3.0/docs/MainApi.md b/versions/3.3.0/docs/MainApi.md index 7ccef7e..f3ed3ce 100644 --- a/versions/3.3.0/docs/MainApi.md +++ b/versions/3.3.0/docs/MainApi.md @@ -112,7 +112,7 @@ Method | HTTP request | Description -### Required permissions * +### Required permissions * Authenticated user ### Example diff --git a/versions/3.3.0/docs/MediaLibraryApi.md b/versions/3.3.0/docs/MediaLibraryApi.md index 9ed0ebf..dca165c 100644 --- a/versions/3.3.0/docs/MediaLibraryApi.md +++ b/versions/3.3.0/docs/MediaLibraryApi.md @@ -1115,7 +1115,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. try: api_response = api_instance.delete_custom_field(id) @@ -1129,7 +1129,7 @@ with elements_sdk.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | ### Return type @@ -2326,7 +2326,7 @@ Name | Type | Description | Notes # **get_all_asset_tape_backups** - def get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset) -> list[AssetBackup] + def get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset, advanced_search=advanced_search) -> list[AssetBackup] @@ -2357,9 +2357,10 @@ ordering = 'ordering_example' # str | Which field to use when ordering the resul limit = 56 # int | Number of results to return per page. (optional) offset = 56 # int | The initial index from which to return the results. (optional) include_asset = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset) + api_response = api_instance.get_all_asset_tape_backups(asset=asset, ordering=ordering, limit=limit, offset=offset, include_asset=include_asset, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_asset_tape_backups: %s\n" % e) @@ -2375,6 +2376,7 @@ Name | Type | Description | Notes **limit** | **int**| Number of results to return per page. | [optional] **offset** | **int**| The initial index from which to return the results. | [optional] **include_asset** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -2586,7 +2588,7 @@ Name | Type | Description | Notes # **get_all_comments** - def get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) -> list[Comment] + def get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) -> list[Comment] @@ -2621,9 +2623,10 @@ offset = 56 # int | The initial index from which to return the results. (optiona for_root = 56 # int | (optional) tasks_for_user = 56 # int | (optional) include_full_asset = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) + api_response = api_instance.get_all_comments(asset=asset, root=root, user=user, ordering=ordering, limit=limit, offset=offset, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_comments: %s\n" % e) @@ -2643,6 +2646,7 @@ Name | Type | Description | Notes **for_root** | **int**| | [optional] **tasks_for_user** | **int**| | [optional] **include_full_asset** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -2834,7 +2838,7 @@ Name | Type | Description | Notes # **get_all_media_file_bundles** - def get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents) -> list[MediaFileBundle] + def get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, advanced_search=advanced_search) -> list[MediaFileBundle] @@ -2871,9 +2875,10 @@ exclude_deleted = True # bool | (optional) exclude_unrecognized = True # bool | (optional) include_proxies = True # bool | (optional) include_parents = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents) + api_response = api_instance.get_all_media_file_bundles(asset=asset, location=location, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_media_file_bundles: %s\n" % e) @@ -2895,6 +2900,7 @@ Name | Type | Description | Notes **exclude_unrecognized** | **bool**| | [optional] **include_proxies** | **bool**| | [optional] **include_parents** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -2964,7 +2970,7 @@ Name | Type | Description | Notes # **get_all_media_files** - def get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) -> list[MediaFile] + def get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) -> list[MediaFile] @@ -3009,9 +3015,10 @@ include_modified_by = True # bool | (optional) include_effective_custom_fields = True # bool | (optional) include_root = True # bool | (optional) include_parents = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) + api_response = api_instance.get_all_media_files(bundle=bundle, bundle__in=bundle__in, parent=parent, path=path, name=name, is_dir=is_dir, is_showroom=is_showroom, present=present, volume=volume, shared_via_tokens=shared_via_tokens, shared_via_tokens__token=shared_via_tokens__token, ordering=ordering, limit=limit, offset=offset, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_all_media_files: %s\n" % e) @@ -3041,6 +3048,7 @@ Name | Type | Description | Notes **include_effective_custom_fields** | **bool**| | [optional] **include_root** | **bool**| | [optional] **include_parents** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -3850,7 +3858,7 @@ Name | Type | Description | Notes # **get_comment** - def get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) -> Comment + def get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) -> Comment @@ -3880,9 +3888,10 @@ with elements_sdk.ApiClient(configuration) as api_client: for_root = 56 # int | (optional) tasks_for_user = 56 # int | (optional) include_full_asset = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset) + api_response = api_instance.get_comment(id, for_root=for_root, tasks_for_user=tasks_for_user, include_full_asset=include_full_asset, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_comment: %s\n" % e) @@ -3897,6 +3906,7 @@ Name | Type | Description | Notes **for_root** | **int**| | [optional] **tasks_for_user** | **int**| | [optional] **include_full_asset** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -3935,7 +3945,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. try: api_response = api_instance.get_custom_field(id) @@ -3949,7 +3959,7 @@ with elements_sdk.ApiClient(configuration) as api_client: Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | ### Return type @@ -4292,7 +4302,7 @@ Name | Type | Description | Notes # **get_media_file** - def get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) -> MediaFile + def get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) -> MediaFile @@ -4324,9 +4334,10 @@ include_modified_by = True # bool | (optional) include_effective_custom_fields = True # bool | (optional) include_root = True # bool | (optional) include_parents = True # bool | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents) + api_response = api_instance.get_media_file(id, resolve_file_permission=resolve_file_permission, include_modified_by=include_modified_by, include_effective_custom_fields=include_effective_custom_fields, include_root=include_root, include_parents=include_parents, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_media_file: %s\n" % e) @@ -4343,6 +4354,7 @@ Name | Type | Description | Notes **include_effective_custom_fields** | **bool**| | [optional] **include_root** | **bool**| | [optional] **include_parents** | **bool**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -4355,7 +4367,7 @@ Name | Type | Description | Notes # **get_media_file_bundle** - def get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit) -> MediaFileBundle + def get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit, advanced_search=advanced_search) -> MediaFileBundle @@ -4388,9 +4400,10 @@ include_proxies = True # bool | (optional) include_parents = True # bool | (optional) offset = 56 # int | (optional) limit = 56 # int | (optional) +advanced_search = None # object | (optional) try: - api_response = api_instance.get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit) + api_response = api_instance.get_media_file_bundle(id, exclude_deleted=exclude_deleted, exclude_unrecognized=exclude_unrecognized, include_proxies=include_proxies, include_parents=include_parents, offset=offset, limit=limit, advanced_search=advanced_search) pprint(api_response) except ApiException as e: print("Exception when calling MediaLibraryApi->get_media_file_bundle: %s\n" % e) @@ -4408,6 +4421,7 @@ Name | Type | Description | Notes **include_parents** | **bool**| | [optional] **offset** | **int**| | [optional] **limit** | **int**| | [optional] + **advanced_search** | [**object**](.md)| | [optional] ### Return type @@ -5593,7 +5607,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. data = elements_sdk.CustomFieldPartialUpdate() # CustomFieldPartialUpdate | try: @@ -5608,7 +5622,7 @@ data = elements_sdk.CustomFieldPartialUpdate() # CustomFieldPartialUpdate | Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | **data** | [**CustomFieldPartialUpdate**](CustomFieldPartialUpdate.md)| | ### Return type @@ -6143,7 +6157,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. data = elements_sdk.RenameCustomFieldRequest() # RenameCustomFieldRequest | try: @@ -6158,7 +6172,7 @@ data = elements_sdk.RenameCustomFieldRequest() # RenameCustomFieldRequest | Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | **data** | [**RenameCustomFieldRequest**](RenameCustomFieldRequest.md)| | ### Return type @@ -6789,7 +6803,7 @@ configuration.host = "https://elements.local" with elements_sdk.ApiClient(configuration) as api_client: # Create an instance of the API class api_instance = elements_sdk.MediaLibraryApi(api_client) - id = 56 # int | A unique integer value identifying this CustomField. + id = 56 # int | A unique integer value identifying this Custom field. data = elements_sdk.CustomField() # CustomField | try: @@ -6804,7 +6818,7 @@ data = elements_sdk.CustomField() # CustomField | Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **id** | **int**| A unique integer value identifying this CustomField. | + **id** | **int**| A unique integer value identifying this Custom field. | **data** | [**CustomField**](CustomField.md)| | ### Return type diff --git a/versions/3.3.0/docs/TaskType.md b/versions/3.3.0/docs/TaskType.md index 1f36088..ccd0834 100644 --- a/versions/3.3.0/docs/TaskType.md +++ b/versions/3.3.0/docs/TaskType.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **icon_class** | **str** | | **is_available** | **bool** | | [optional] [readonly] **allow_in_jobs** | **bool** | | +**new_since_version** | **str** | | [[Back to Model list]](../#documentation-for-models) [[Back to API list]](../#documentation-for-api-endpoints) [[Back to README]](../)